Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(352)

Unified Diff: chrome/browser/chromeos/extensions/file_manager/private_api_file_system.h

Issue 145303002: Convert Media Galleries to use base::File (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase Created 6 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/chromeos/extensions/file_manager/private_api_file_system.h
diff --git a/chrome/browser/chromeos/extensions/file_manager/private_api_file_system.h b/chrome/browser/chromeos/extensions/file_manager/private_api_file_system.h
index 7bbfd433b06e0ba6ae462bf4d69bdb45854e2b49..6090853d474f9bee325a512197b9955d61ccd1a8 100644
--- a/chrome/browser/chromeos/extensions/file_manager/private_api_file_system.h
+++ b/chrome/browser/chromeos/extensions/file_manager/private_api_file_system.h
@@ -41,11 +41,11 @@ class FileBrowserPrivateRequestFileSystemFunction
private:
void RespondSuccessOnUIThread(const std::string& name,
const GURL& root_url);
- void RespondFailedOnUIThread(base::PlatformFileError error_code);
+ void RespondFailedOnUIThread(base::File::Error error_code);
// Called when something goes wrong. Records the error to |error_| per the
// error code and reports that the private API function failed.
- void DidFail(base::PlatformFileError error_code);
+ void DidFail(base::File::Error error_code);
// Sets up file system access permissions to the extension identified by
// |child_id|.

Powered by Google App Engine
This is Rietveld 408576698