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

Unified Diff: chrome/browser/chromeos/gdata/drive_task_executor.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
Index: chrome/browser/chromeos/gdata/drive_task_executor.cc
diff --git a/chrome/browser/chromeos/gdata/drive_task_executor.cc b/chrome/browser/chromeos/gdata/drive_task_executor.cc
index 9d98cff1f6bfe4c91f192541b1786e72c2011309..312f73de3046e7295093b926c0754fafb67e705b 100644
--- a/chrome/browser/chromeos/gdata/drive_task_executor.cc
+++ b/chrome/browser/chromeos/gdata/drive_task_executor.cc
@@ -12,7 +12,7 @@
#include "chrome/browser/chromeos/extensions/file_browser_private_api.h"
#include "chrome/browser/chromeos/gdata/drive.pb.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/profiles/profile.h"
#include "chrome/browser/profiles/profile_manager.h"
#include "chrome/browser/ui/browser.h"
@@ -59,8 +59,8 @@ bool DriveTaskExecutor::ExecuteAndNotify(
raw_paths.push_back(url.virtual_path());
}
- GDataSystemService* system_service =
- GDataSystemServiceFactory::GetForProfile(profile());
+ DriveSystemService* system_service =
+ DriveSystemServiceFactory::GetForProfile(profile());
DCHECK(current_index_ == 0);
if (!system_service || !system_service->file_system())
return false;
@@ -85,8 +85,8 @@ void DriveTaskExecutor::OnFileEntryFetched(
if (!current_index_)
return;
- GDataSystemService* system_service =
- GDataSystemServiceFactory::GetForProfile(profile());
+ DriveSystemService* system_service =
+ DriveSystemServiceFactory::GetForProfile(profile());
// Here, we are only insterested in files.
if (entry_proto.get() && !entry_proto->has_file_specific_info())
@@ -121,8 +121,8 @@ void DriveTaskExecutor::OnAppAuthorized(
if (!current_index_)
return;
- GDataSystemService* system_service =
- GDataSystemServiceFactory::GetForProfile(profile());
+ DriveSystemService* system_service =
+ DriveSystemServiceFactory::GetForProfile(profile());
if (!system_service || error != HTTP_SUCCESS) {
Done(false);
« no previous file with comments | « chrome/browser/chromeos/gdata/drive_system_service.cc ('k') | chrome/browser/chromeos/gdata/file_write_helper.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698