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

Unified Diff: chrome/browser/chromeos/gdata/gdata_sync_client.h

Issue 10874028: Rename GDataFileSystem* to DriveFileSystem* (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase. 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/gdata/gdata_sync_client.h
diff --git a/chrome/browser/chromeos/gdata/gdata_sync_client.h b/chrome/browser/chromeos/gdata/gdata_sync_client.h
index 64d4e03f84bae2379e64eebc3b5041c3fbe4669a..91aede16a1c6463a62e2c68f7964afb591dfa6e1 100644
--- a/chrome/browser/chromeos/gdata/gdata_sync_client.h
+++ b/chrome/browser/chromeos/gdata/gdata_sync_client.h
@@ -16,7 +16,7 @@
#include "base/time.h"
#include "chrome/browser/chromeos/cros/network_library.h"
#include "chrome/browser/chromeos/gdata/drive_cache.h"
-#include "chrome/browser/chromeos/gdata/gdata_file_system_interface.h"
+#include "chrome/browser/chromeos/gdata/drive_file_system_interface.h"
#include "content/public/browser/notification_details.h"
#include "content/public/browser/notification_observer.h"
#include "content/public/browser/notification_source.h"
@@ -43,7 +43,7 @@ namespace gdata {
// TODO(satorux): This client should also upload pinned but dirty (locally
// edited) files to gdata. Will work on this once downloading is done.
// crosbug.com/27836.
-class GDataSyncClient : public GDataFileSystemInterface::Observer,
+class GDataSyncClient : public DriveFileSystemInterface::Observer,
public DriveCache::Observer,
public chromeos::NetworkLibrary::NetworkManagerObserver,
public content::NotificationObserver {
@@ -69,14 +69,14 @@ class GDataSyncClient : public GDataFileSystemInterface::Observer,
// |file_system| is used access the
// cache (ex. store a file to the cache when the file is downloaded).
GDataSyncClient(Profile* profile,
- GDataFileSystemInterface* file_system,
+ DriveFileSystemInterface* file_system,
DriveCache* cache);
virtual ~GDataSyncClient();
// Initializes the GDataSyncClient.
void Initialize();
- // GDataFileSystemInterface overrides.
+ // DriveFileSystemInterface::Observer overrides.
virtual void OnInitialLoadFinished() OVERRIDE;
virtual void OnFeedFromServerLoaded() OVERRIDE;
@@ -183,7 +183,7 @@ class GDataSyncClient : public GDataFileSystemInterface::Observer,
const content::NotificationSource& source,
const content::NotificationDetails& details) OVERRIDE;
Profile* profile_;
- GDataFileSystemInterface* file_system_; // Owned by GDataSystemService.
+ DriveFileSystemInterface* file_system_; // Owned by GDataSystemService.
DriveCache* cache_; // Owned by GDataSystemService.
scoped_ptr<PrefChangeRegistrar> registrar_;
« no previous file with comments | « chrome/browser/chromeos/gdata/gdata_protocol_handler.cc ('k') | chrome/browser/chromeos/gdata/gdata_sync_client.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698