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

Unified Diff: chrome/browser/chromeos/system/ash_system_tray_delegate.cc

Issue 10828385: Rename DocumentsServiceInterface to DriveServiceInterface. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix unnecessary includes. 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/system/ash_system_tray_delegate.cc
diff --git a/chrome/browser/chromeos/system/ash_system_tray_delegate.cc b/chrome/browser/chromeos/system/ash_system_tray_delegate.cc
index f9ba591f8f089602a6d101464caaa34659c74aed..4b2d917ffb2045411349d600fa6779d191bfdfc7 100644
--- a/chrome/browser/chromeos/system/ash_system_tray_delegate.cc
+++ b/chrome/browser/chromeos/system/ash_system_tray_delegate.cc
@@ -35,7 +35,7 @@
#include "chrome/browser/chromeos/bluetooth/bluetooth_device.h"
#include "chrome/browser/chromeos/cros/cros_library.h"
#include "chrome/browser/chromeos/cros/network_library.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_operation_registry.h"
#include "chrome/browser/chromeos/gdata/gdata_system_service.h"
#include "chrome/browser/chromeos/gdata/gdata_util.h"
@@ -242,7 +242,7 @@ class SystemTrayDelegate : public ash::SystemTrayDelegate,
GDataSystemService* system_service =
GDataSystemServiceFactory::FindForProfile(profile);
if (system_service) {
- system_service->docs_service()->operation_registry()->
+ system_service->drive_service()->operation_registry()->
RemoveObserver(this);
}
}
@@ -462,7 +462,7 @@ class SystemTrayDelegate : public ash::SystemTrayDelegate,
if (!system_service)
return;
- system_service->docs_service()->operation_registry()->CancelForFilePath(
+ system_service->drive_service()->operation_registry()->CancelForFilePath(
file_path);
}
@@ -478,7 +478,7 @@ class SystemTrayDelegate : public ash::SystemTrayDelegate,
return;
*list = GetDriveStatusList(
- system_service->docs_service()->operation_registry()->
+ system_service->drive_service()->operation_registry()->
GetProgressStatusList());
}
@@ -743,7 +743,7 @@ class SystemTrayDelegate : public ash::SystemTrayDelegate,
if (!system_service)
return;
- system_service->docs_service()->operation_registry()->AddObserver(this);
+ system_service->drive_service()->operation_registry()->AddObserver(this);
}
}
@@ -1139,7 +1139,7 @@ class SystemTrayDelegate : public ash::SystemTrayDelegate,
if (!system_service)
return;
- OnProgressUpdate(system_service->docs_service()->operation_registry()->
+ OnProgressUpdate(system_service->drive_service()->operation_registry()->
GetProgressStatusList());
}
« no previous file with comments | « chrome/browser/chromeos/gdata/operations_base.h ('k') | chrome/browser/ui/webui/chromeos/drive_internals_ui.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698