Chromium Code Reviews| Index: chrome/browser/chromeos/extensions/file_browser_private_api.cc |
| diff --git a/chrome/browser/chromeos/extensions/file_browser_private_api.cc b/chrome/browser/chromeos/extensions/file_browser_private_api.cc |
| index 3703869fa837bf675d092e7d13ef3b6b6a8082cc..219c3f2574b917c2734faefa6f6ce580c985941a 100644 |
| --- a/chrome/browser/chromeos/extensions/file_browser_private_api.cc |
| +++ b/chrome/browser/chromeos/extensions/file_browser_private_api.cc |
| @@ -23,10 +23,10 @@ |
| #include "chrome/browser/chromeos/gdata/drive_service_interface.h" |
| #include "chrome/browser/chromeos/gdata/drive_webapps_registry.h" |
| #include "chrome/browser/chromeos/gdata/gdata.pb.h" |
| -#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_parser.h" |
| +#include "chrome/browser/chromeos/gdata/operation_registry.h" |
| #include "chrome/browser/chromeos/system/statistics_provider.h" |
| #include "chrome/browser/extensions/extension_function_dispatcher.h" |
| #include "chrome/browser/extensions/extension_process_manager.h" |
| @@ -68,7 +68,7 @@ using content::SiteInstance; |
| using content::WebContents; |
| using extensions::Extension; |
| using file_handler_util::FileTaskExecutor; |
| -using gdata::GDataOperationRegistry; |
| +using gdata::OperationRegistry; |
|
kochi
2012/08/21 05:09:23
Sorted alphabetically.
|
| using gdata::InstalledApp; |
| namespace { |
| @@ -2106,7 +2106,7 @@ ListValue* GetFileTransfersFunction::GetFileTransfersList() { |
| if (!system_service) |
| return NULL; |
| - std::vector<gdata::GDataOperationRegistry::ProgressStatus> |
| + std::vector<gdata::OperationRegistry::ProgressStatus> |
| list = system_service->drive_service()->operation_registry()-> |
| GetProgressStatusList(); |
| return file_manager_util::ProgressStatusVectorToListValue( |
| @@ -2163,7 +2163,7 @@ void CancelFileTransfersFunction::GetLocalPathsResponseOnUIThread( |
| return; |
| } |
| - gdata::GDataOperationRegistry* operation_registry = |
| + gdata::OperationRegistry* operation_registry = |
| system_service->drive_service()->operation_registry(); |
| scoped_ptr<ListValue> responses(new ListValue()); |