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

Unified Diff: chrome/browser/chromeos/gdata/drive_api_operations.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_operations.h
diff --git a/chrome/browser/chromeos/gdata/drive_api_operations.h b/chrome/browser/chromeos/gdata/drive_api_operations.h
index 7946953f708fc6110456fc339c424d1a1eacdf3b..c0dbd8a5a50cfe4e962d1091175c7ca0ac8d5b7b 100644
--- a/chrome/browser/chromeos/gdata/drive_api_operations.h
+++ b/chrome/browser/chromeos/gdata/drive_api_operations.h
@@ -18,7 +18,7 @@ namespace gdata {
// This class performs the operation for fetching About data.
class GetAboutOperation : public GetDataOperation {
public:
- GetAboutOperation(GDataOperationRegistry* registry,
+ GetAboutOperation(OperationRegistry* registry,
const GetDataCallback& callback);
virtual ~GetAboutOperation();
@@ -35,7 +35,7 @@ class GetAboutOperation : public GetDataOperation {
// This class performs the operation for fetching Applist.
class GetApplistOperation : public GetDataOperation {
public:
- GetApplistOperation(GDataOperationRegistry* registry,
+ GetApplistOperation(OperationRegistry* registry,
const GetDataCallback& callback);
virtual ~GetApplistOperation();
@@ -57,7 +57,7 @@ class GetChangelistOperation : public GetDataOperation {
// |url| specifies URL for document feed fetching operation. If empty URL is
// passed, the default URL is used and returns the first page of the result.
// When non-first page result is requested, |url| should be specified.
- GetChangelistOperation(GDataOperationRegistry* registry,
+ GetChangelistOperation(OperationRegistry* registry,
const GURL& url,
int64 start_changestamp,
const GetDataCallback& callback);
@@ -79,7 +79,7 @@ class GetChangelistOperation : public GetDataOperation {
// This class performs the operation for fetching Filelist.
class GetFilelistOperation : public GetDataOperation {
public:
- GetFilelistOperation(GDataOperationRegistry* registry,
+ GetFilelistOperation(OperationRegistry* registry,
const GURL& url,
const std::string& search_string,
const GetDataCallback& callback);
@@ -101,7 +101,7 @@ class GetFilelistOperation : public GetDataOperation {
// This class performs the operation for fetching a file.
class GetFileOperation : public GetDataOperation {
public:
- GetFileOperation(GDataOperationRegistry* registry,
+ GetFileOperation(OperationRegistry* registry,
const std::string& file_id,
const GetDataCallback& callback);
virtual ~GetFileOperation();
« no previous file with comments | « chrome/browser/chromeos/gdata/auth_service.cc ('k') | chrome/browser/chromeos/gdata/drive_api_operations.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698