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

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

Issue 10873026: Rename GDataSystemService to DriveSystemService (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix merge issue, remove one include header which is no longer necessary 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
« no previous file with comments | « chrome/browser/chromeos/gdata/gdata_wapi_service.h ('k') | chrome/browser/download/download_prefs.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 e48109e0217fe7eb4b7213dd81d147c1278f5cbf..bae34d56b0f6a83934861f187ad31dab7bb9e2f6 100644
--- a/chrome/browser/chromeos/system/ash_system_tray_delegate.cc
+++ b/chrome/browser/chromeos/system/ash_system_tray_delegate.cc
@@ -36,7 +36,7 @@
#include "chrome/browser/chromeos/cros/cros_library.h"
#include "chrome/browser/chromeos/cros/network_library.h"
#include "chrome/browser/chromeos/gdata/drive_service_interface.h"
-#include "chrome/browser/chromeos/gdata/gdata_system_service.h"
+#include "chrome/browser/chromeos/gdata/drive_system_service.h"
#include "chrome/browser/chromeos/gdata/gdata_util.h"
#include "chrome/browser/chromeos/gdata/operation_registry.h"
#include "chrome/browser/chromeos/input_method/input_method_manager.h"
@@ -76,8 +76,8 @@
#include "grit/generated_resources.h"
#include "ui/base/l10n/l10n_util.h"
-using gdata::GDataSystemService;
-using gdata::GDataSystemServiceFactory;
+using gdata::DriveSystemService;
+using gdata::DriveSystemServiceFactory;
using gdata::OperationRegistry;
namespace chromeos {
@@ -239,8 +239,8 @@ class SystemTrayDelegate : public ash::SystemTrayDelegate,
// Stop observing gdata operations.
Profile* profile = ProfileManager::GetDefaultProfile();
if (gdata::util::IsGDataAvailable(profile)) {
- GDataSystemService* system_service =
- GDataSystemServiceFactory::FindForProfile(profile);
+ DriveSystemService* system_service =
+ DriveSystemServiceFactory::FindForProfile(profile);
if (system_service) {
system_service->drive_service()->operation_registry()->
RemoveObserver(this);
@@ -457,8 +457,8 @@ class SystemTrayDelegate : public ash::SystemTrayDelegate,
if (!gdata::util::IsGDataAvailable(profile))
return;
- GDataSystemService* system_service =
- GDataSystemServiceFactory::FindForProfile(profile);
+ DriveSystemService* system_service =
+ DriveSystemServiceFactory::FindForProfile(profile);
if (!system_service)
return;
@@ -472,8 +472,8 @@ class SystemTrayDelegate : public ash::SystemTrayDelegate,
if (!gdata::util::IsGDataAvailable(profile))
return;
- GDataSystemService* system_service =
- GDataSystemServiceFactory::FindForProfile(profile);
+ DriveSystemService* system_service =
+ DriveSystemServiceFactory::FindForProfile(profile);
if (!system_service)
return;
@@ -738,8 +738,8 @@ class SystemTrayDelegate : public ash::SystemTrayDelegate,
profile->GetPrefs()->GetInteger(prefs::kLanguageXkbRemapSearchKeyTo);
if (gdata::util::IsGDataAvailable(profile)) {
- GDataSystemService* system_service =
- GDataSystemServiceFactory::FindForProfile(profile);
+ DriveSystemService* system_service =
+ DriveSystemServiceFactory::FindForProfile(profile);
if (!system_service)
return;
@@ -1134,8 +1134,8 @@ class SystemTrayDelegate : public ash::SystemTrayDelegate,
if (!gdata::util::IsGDataAvailable(profile))
return;
- GDataSystemService* system_service =
- GDataSystemServiceFactory::FindForProfile(profile);
+ DriveSystemService* system_service =
+ DriveSystemServiceFactory::FindForProfile(profile);
if (!system_service)
return;
« no previous file with comments | « chrome/browser/chromeos/gdata/gdata_wapi_service.h ('k') | chrome/browser/download/download_prefs.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698