| 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();
|
| }
|
|
|
|
|