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..00d83aeac35be6385ad9e629ef5fc4a6e294b980 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(); |
} |
@@ -93,7 +93,7 @@ void DriveAPIService::GetChangelist(const GURL& url, |
} |
void DriveAPIService::GetDocumentEntry(const std::string& resource_id, |
- const GetDataCallback& callback) { |
+ const GetDataCallback& callback) { |
kochi
2012/08/21 05:09:23
Fix indentation done.
|
DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI)); |
runner_->StartOperationWithRetry(new GetFileOperation(operation_registry(), |