Skip to content

Commit

Permalink
FileManager: fix typo: UMOUNTED -> UNMOUNTED
Browse files Browse the repository at this point in the history
An enum named "VolumeManager.GDataStatus" doesn't have "UMOUNTED" but "UNMOUNTED".

R=kaznacheev@chromium.org
BUG=none

Review URL: https://chromiumcodereview.appspot.com/10963023

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@158205 0039d316-1c4b-4281-b951-d872f2087c98
  • Loading branch information
yoshiki@chromium.org committed Sep 23, 2012
1 parent 9e417da commit 3e25cac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion chrome/browser/resources/file_manager/js/volume_manager.js
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@ VolumeManager.prototype.onMountCompleted_ = function(event) {
this.waitGDataLoaded_(event.mountPath,
this.setGDataStatus_.bind(this, VolumeManager.GDataStatus.MOUNTED));
} else if (event.eventType == 'unmount') {
this.setGDataStatus_(VolumeManager.GDataStatus.UMOUNTED);
this.setGDataStatus_(VolumeManager.GDataStatus.UNMOUNTED);
}
}
}
Expand Down

0 comments on commit 3e25cac

Please sign in to comment.