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

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

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.cc
diff --git a/chrome/browser/chromeos/gdata/drive_api_service.cc b/chrome/browser/chromeos/gdata/drive_api_service.cc
index acd653fd31c6b742562c772b3d5311a05b17d23e..3327c277c86c2c8c61d01578f915ab7c454909f0 100644
--- a/chrome/browser/chromeos/gdata/drive_api_service.cc
+++ b/chrome/browser/chromeos/gdata/drive_api_service.cc
@@ -9,9 +9,9 @@
#include "base/bind.h"
#include "base/message_loop_proxy.h"
#include "chrome/browser/chromeos/gdata/drive_api_operations.h"
-#include "chrome/browser/chromeos/gdata/gdata_operation_runner.h"
#include "chrome/browser/chromeos/gdata/gdata_operations.h"
#include "chrome/browser/chromeos/gdata/gdata_util.h"
+#include "chrome/browser/chromeos/gdata/operation_runner.h"
#include "chrome/browser/profiles/profile.h"
#include "chrome/common/net/url_util.h"
#include "content/public/browser/browser_thread.h"
@@ -33,11 +33,11 @@ DriveAPIService::~DriveAPIService() {
void DriveAPIService::Initialize(Profile* profile) {
DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI));
profile_ = profile;
- runner_.reset(new GDataOperationRunner(profile));
+ runner_.reset(new OperationRunner(profile));
runner_->Initialize();
}
-GDataOperationRegistry* DriveAPIService::operation_registry() const {
+OperationRegistry* DriveAPIService::operation_registry() const {
return runner_->operation_registry();
}
« no previous file with comments | « chrome/browser/chromeos/gdata/drive_api_service.h ('k') | chrome/browser/chromeos/gdata/drive_service_interface.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698