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

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

Issue 11106007: drive: Rename 'gdata' namespace to 'drive' in chrome/browser/chromeos/drive (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 8 years, 2 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 4273484236ebba1d824b8037ff0f9797dc8d6c1c..1b8c1b23e81121945b527d3658062079755792e5 100644
--- a/chrome/browser/chromeos/extensions/file_browser_event_router.h
+++ b/chrome/browser/chromeos/extensions/file_browser_event_router.h
@@ -30,7 +30,7 @@ class FileBrowserNotifications;
class PrefChangeRegistrar;
class Profile;
-namespace gdata {
+namespace drive {
class DriveEntryProto;
class DriveFileSystemInterface;
}
@@ -42,8 +42,8 @@ class FileBrowserEventRouter
public chromeos::disks::DiskMountManager::Observer,
public chromeos::NetworkLibrary::NetworkManagerObserver,
public content::NotificationObserver,
- public gdata::DriveFileSystemObserver,
- public gdata::DriveServiceObserver {
+ public drive::DriveFileSystemObserver,
+ public drive::DriveServiceObserver {
public:
// RefcountedProfileKeyedService overrides.
virtual void ShutdownOnUIThread() OVERRIDE;
@@ -84,12 +84,12 @@ class FileBrowserEventRouter
const content::NotificationSource& source,
const content::NotificationDetails& details) OVERRIDE;
- // gdata::DriveServiceObserver overrides.
+ // drive::DriveServiceObserver overrides.
virtual void OnProgressUpdate(
const gdata::OperationProgressStatusList& list) OVERRIDE;
virtual void OnAuthenticationFailed(gdata::GDataErrorCode error) OVERRIDE;
- // gdata::DriveFileSystemInterface::Observer overrides.
+ // drive::DriveFileSystemInterface::Observer overrides.
virtual void OnDirectoryChanged(const FilePath& directory_path) OVERRIDE;
virtual void OnDocumentFeedFetched(int num_accumulated_entries) OVERRIDE;
virtual void OnFileSystemMounted() OVERRIDE;
@@ -189,7 +189,7 @@ class FileBrowserEventRouter
bool small);
// Returns the DriveFileSystem for the current profile.
- gdata::DriveFileSystemInterface* GetRemoteFileSystem() const;
+ drive::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