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

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

Issue 10874028: Rename GDataFileSystem* to DriveFileSystem* (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Remaining manual changes Created 8 years, 4 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_event_router.h
diff --git a/chrome/browser/chromeos/extensions/file_browser_event_router.h b/chrome/browser/chromeos/extensions/file_browser_event_router.h
index bcd509376ddf04da79e1149878cab6c952faa587..4cf30db7a8f4b01cf17422d59c6d4d3ee25b8586 100644
--- a/chrome/browser/chromeos/extensions/file_browser_event_router.h
+++ b/chrome/browser/chromeos/extensions/file_browser_event_router.h
@@ -16,7 +16,7 @@
#include "base/synchronization/lock.h"
#include "chrome/browser/chromeos/cros/network_library.h"
#include "chrome/browser/chromeos/disks/disk_mount_manager.h"
-#include "chrome/browser/chromeos/gdata/gdata_file_system_interface.h"
+#include "chrome/browser/chromeos/gdata/drive_file_system_interface.h"
#include "chrome/browser/chromeos/gdata/operation_registry.h"
#include "chrome/browser/profiles/refcounted_profile_keyed_service.h"
#include "chrome/browser/profiles/refcounted_profile_keyed_service_factory.h"
@@ -36,7 +36,7 @@ class FileBrowserEventRouter
public chromeos::NetworkLibrary::NetworkManagerObserver,
public content::NotificationObserver,
public gdata::OperationRegistry::Observer,
- public gdata::GDataFileSystemInterface::Observer {
+ public gdata::DriveFileSystemInterface::Observer {
public:
// RefcountedProfileKeyedService overrides.
virtual void ShutdownOnUIThread() OVERRIDE;
@@ -83,7 +83,7 @@ class FileBrowserEventRouter
OVERRIDE;
virtual void OnAuthenticationFailed() OVERRIDE;
- // gdata::GDataFileSystemInterface::Observer overrides.
+ // gdata::DriveFileSystemInterface::Observer overrides.
virtual void OnDirectoryChanged(const FilePath& directory_path) OVERRIDE;
virtual void OnDocumentFeedFetched(int num_accumulated_entries) OVERRIDE;
virtual void OnFileSystemMounted() OVERRIDE;
@@ -182,8 +182,8 @@ class FileBrowserEventRouter
const std::string& device_path,
bool small);
- // Returns the GDataFileSystem for the current profile.
- gdata::GDataFileSystemInterface* GetRemoteFileSystem() const;
+ // Returns the DriveFileSystem for the current profile.
+ gdata::DriveFileSystemInterface* GetRemoteFileSystem() const;
// Handles requests to start and stop periodic updates on remote file system.
// When |start| is set to true, this function starts periodic updates only if

Powered by Google App Engine
This is Rietveld 408576698