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 |