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

Unified Diff: chrome/browser/chromeos/extensions/file_browser_private_api.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/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..a9fa6b51fce7540e5732e365affd3de82e817c84 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,8 +68,8 @@ using content::SiteInstance;
using content::WebContents;
using extensions::Extension;
using file_handler_util::FileTaskExecutor;
-using gdata::GDataOperationRegistry;
using gdata::InstalledApp;
+using gdata::OperationRegistry;
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());

Powered by Google App Engine
This is Rietveld 408576698