Chromium Code Reviews| Index: chrome/browser/chromeos/gdata/gdata_protocol_handler.cc |
| diff --git a/chrome/browser/chromeos/gdata/gdata_protocol_handler.cc b/chrome/browser/chromeos/gdata/gdata_protocol_handler.cc |
| index 0d7d8e0e4451e8f4da9e58eb08518c6438c5cc4e..e7e01a8c93f7b0152b332d7345d89507ccf6bc8d 100644 |
| --- a/chrome/browser/chromeos/gdata/gdata_protocol_handler.cc |
| +++ b/chrome/browser/chromeos/gdata/gdata_protocol_handler.cc |
| @@ -16,7 +16,7 @@ |
| #include "base/string_util.h" |
| #include "base/threading/sequenced_worker_pool.h" |
| #include "base/utf_string_conversions.h" |
| -#include "chrome/browser/chromeos/gdata/documents_service_interface.h" |
| +#include "chrome/browser/chromeos/gdata/drive_service_interface.h" |
| #include "chrome/browser/chromeos/gdata/gdata.pb.h" |
| #include "chrome/browser/chromeos/gdata/gdata_directory_service.h" |
| #include "chrome/browser/chromeos/gdata/gdata_errorcode.h" |
| @@ -24,6 +24,7 @@ |
| #include "chrome/browser/chromeos/gdata/gdata_operation_registry.h" |
| #include "chrome/browser/chromeos/gdata/gdata_system_service.h" |
| #include "chrome/browser/chromeos/gdata/gdata_util.h" |
| +#include "chrome/browser/chromeos/gdata/gdata_wapi_service.h" |
|
kochi
2012/08/21 02:34:51
Looks like an unnecessary header sneaked in during
|
| #include "chrome/browser/profiles/profile.h" |
| #include "chrome/browser/profiles/profile_manager.h" |
| #include "chrome/common/url_constants.h" |
| @@ -122,7 +123,7 @@ void GetFileSystemOnUIThread(GDataFileSystemInterface** file_system) { |
| void CancelGDataDownloadOnUIThread(const FilePath& gdata_file_path) { |
| GDataSystemService* system_service = GetSystemService(); |
| if (system_service) |
| - system_service->docs_service()->operation_registry()->CancelForFilePath( |
| + system_service->drive_service()->operation_registry()->CancelForFilePath( |
| gdata_file_path); |
| } |