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

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

Issue 10837338: Remove "GData" prefix from non-GData specific classes (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/drive_api_service.h
diff --git a/chrome/browser/chromeos/gdata/drive_api_service.h b/chrome/browser/chromeos/gdata/drive_api_service.h
index c6d57c4649b2c7e5e088848765e5ddea8ed3bbf6..a282c64ef09089a6f95fdb953b233fd63e00be55 100644
--- a/chrome/browser/chromeos/gdata/drive_api_service.h
+++ b/chrome/browser/chromeos/gdata/drive_api_service.h
@@ -9,9 +9,9 @@
#include "base/memory/scoped_ptr.h"
#include "base/memory/weak_ptr.h"
+#include "chrome/browser/chromeos/gdata/auth_service.h"
#include "chrome/browser/chromeos/gdata/drive_service_interface.h"
#include "chrome/browser/chromeos/gdata/gdata_operations.h"
-#include "chrome/browser/chromeos/gdata/gdata_auth_service.h"
#include "chrome/browser/chromeos/gdata/gdata_errorcode.h"
class FilePath;
@@ -20,7 +20,7 @@ class Profile;
namespace gdata {
-class GDataOperationRunner;
+class OperationRunner;
// This class provides documents feed service calls for Drive V2 API.
// Details of API call are abstracted in each operation class and this class
@@ -34,7 +34,7 @@ class DriveAPIService : public DriveServiceInterface {
// DriveServiceInterface Overrides
virtual void Initialize(Profile* profile) OVERRIDE;
- virtual GDataOperationRegistry* operation_registry() const OVERRIDE;
+ virtual OperationRegistry* operation_registry() const OVERRIDE;
virtual void CancelAll() OVERRIDE;
virtual void Authenticate(const AuthStatusCallback& callback) OVERRIDE;
virtual bool HasAccessToken() const OVERRIDE;
@@ -110,7 +110,7 @@ class DriveAPIService : public DriveServiceInterface {
const GetDataCallback& callback);
Profile* profile_;
- scoped_ptr<GDataOperationRunner> runner_;
+ scoped_ptr<OperationRunner> runner_;
DISALLOW_COPY_AND_ASSIGN(DriveAPIService);
};
« no previous file with comments | « chrome/browser/chromeos/gdata/drive_api_operations.cc ('k') | chrome/browser/chromeos/gdata/drive_api_service.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698