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

Unified Diff: chrome/browser/chromeos/gdata/drive_api_operations.cc

Issue 10831122: gdata cleanup: stop passing Profile* around GData operations. (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.cc
diff --git a/chrome/browser/chromeos/gdata/drive_api_operations.cc b/chrome/browser/chromeos/gdata/drive_api_operations.cc
index 719de5620d1aa3288bc2b07106379a03ffe0091b..fdc3f012e02ec7340c1a1a376e73f2082e19bb76 100644
--- a/chrome/browser/chromeos/gdata/drive_api_operations.cc
+++ b/chrome/browser/chromeos/gdata/drive_api_operations.cc
@@ -16,11 +16,9 @@ namespace gdata {
//============================== GetAboutOperation =============================
-GetAboutOperation::GetAboutOperation(
- GDataOperationRegistry* registry,
- Profile* profile,
- const GetDataCallback& callback)
- : GetDataOperation(registry, profile, callback) {}
+GetAboutOperation::GetAboutOperation(GDataOperationRegistry* registry,
+ const GetDataCallback& callback)
+ : GetDataOperation(registry, callback) {}
GetAboutOperation::~GetAboutOperation() {}
@@ -30,11 +28,9 @@ GURL GetAboutOperation::GetURL() const {
//============================== GetApplistOperation ===========================
-GetApplistOperation::GetApplistOperation(
- GDataOperationRegistry* registry,
- Profile* profile,
- const GetDataCallback& callback)
- : GetDataOperation(registry, profile, callback) {}
+GetApplistOperation::GetApplistOperation(GDataOperationRegistry* registry,
+ const GetDataCallback& callback)
+ : GetDataOperation(registry, callback) {}
GetApplistOperation::~GetApplistOperation() {}
« no previous file with comments | « chrome/browser/chromeos/gdata/drive_api_operations.h ('k') | chrome/browser/chromeos/gdata/gdata_auth_service.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698