Index: chrome/browser/chromeos/file_manager/open_util.cc |
diff --git a/chrome/browser/chromeos/file_manager/open_util.cc b/chrome/browser/chromeos/file_manager/open_util.cc |
index 279186c494b703a54086bc53543bbe84df11076f..8b7818512631af67067abe03eb9b42f2f12b8b98 100644 |
--- a/chrome/browser/chromeos/file_manager/open_util.cc |
+++ b/chrome/browser/chromeos/file_manager/open_util.cc |
@@ -174,10 +174,10 @@ bool OpenFile(Profile* profile, const base::FilePath& file_path) { |
// Used to implement OpenItem(). |
void ContinueOpenItem(Profile* profile, |
const base::FilePath& file_path, |
- base::PlatformFileError error) { |
+ base::File::Error error) { |
DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI)); |
- if (error == base::PLATFORM_FILE_OK) { |
+ if (error == base::File::FILE_OK) { |
// A directory exists at |file_path|. Open it with the file manager. |
OpenFileManagerWithInternalActionId(profile, file_path, "open"); |
} else { |