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

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

Issue 9836086: Added logic that will return the result of the first chunk of root feed and continue fetching the r… (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: crash fix Created 8 years, 9 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 4190870fe2d067438c81105ed07fb3969f13171a..dc113047c6fd4a70fc98f90c9fb888b4126a1524 100644
--- a/chrome/browser/chromeos/extensions/file_browser_private_api.h
+++ b/chrome/browser/chromeos/extensions/file_browser_private_api.h
@@ -31,6 +31,9 @@ class RequestLocalFileSystemFunction : public AsyncExtensionFunction {
private:
class LocalFileSystemCallbackDispatcher;
+ // Adds gdata mount point.
+ void AddGDataMountPoint();
+
void RespondSuccessOnUIThread(const std::string& name,
const GURL& root_path);
void RespondFailedOnUIThread(base::PlatformFileError error_code);
@@ -233,10 +236,6 @@ class AddMountFunction
private:
// Sends gdata mount event to renderers.
void RaiseGDataMountEvent(gdata::GDataErrorCode error);
- // Gives the extension renderer file permissions for the given path.
- void GrantFilePermissionsToHost(const FilePath& path, int permissions);
- // Adds gdata mount point.
- void AddGDataMountPoint();
// A callback method to handle the result of GData authentication request.
void OnGDataAuthentication(gdata::GDataErrorCode error,
const std::string& token);

Powered by Google App Engine
This is Rietveld 408576698