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

Unified Diff: chrome/browser/chromeos/extensions/file_browser_private_api.h

Issue 10008100: gdata: Support mouting archive file in GData cache (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: gdata: Support mounting archive files under GData cache Created 8 years, 8 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_browser_private_api.h
diff --git a/chrome/browser/chromeos/extensions/file_browser_private_api.h b/chrome/browser/chromeos/extensions/file_browser_private_api.h
index 7f21030cda5fd892402fa8af8d6fe64c8499e293..adfb6e83eafc7adf06e3ab94f9bca3c9115c33d3 100644
--- a/chrome/browser/chromeos/extensions/file_browser_private_api.h
+++ b/chrome/browser/chromeos/extensions/file_browser_private_api.h
@@ -244,6 +244,11 @@ class AddMountFunction
// GetLocalPathsOnFileThreadAndRunCallbackOnUIThread.
void GetLocalPathsResponseOnUIThread(const std::string& mount_type_str,
const SelectedFileInfoList& files);
+ // Callback for SetMountedState.
Ben Chan 2012/04/17 20:57:53 nit: to be consistent with other comments, maybe:
+ void OnMountedStateSet(base::PlatformFileError error,
+ const FilePath& file_path,
+ const std::string& file_name,
Ben Chan 2012/04/17 20:57:53 const FilePath::StringType& instead of const std::
+ const std::string& mount_type);
DECLARE_EXTENSION_FUNCTION_NAME("fileBrowserPrivate.addMount");
};
@@ -265,6 +270,9 @@ class RemoveMountFunction
// GetLocalPathsOnFileThreadAndRunCallbackOnUIThread.
void GetLocalPathsResponseOnUIThread(const SelectedFileInfoList& files);
+ // Callback for ClearMountedState.
Ben Chan 2012/04/17 20:57:53 nit: to be consistent with other comments, maybe:
+ void OnMountedStateCleared(base::PlatformFileError error);
+
DECLARE_EXTENSION_FUNCTION_NAME("fileBrowserPrivate.removeMount");
};

Powered by Google App Engine
This is Rietveld 408576698