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

Unified Diff: chrome/browser/chromeos/gdata/gdata_util.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_uploader.h ('k') | chrome/browser/chromeos/gdata/gdata_wapi_service.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/chromeos/gdata/gdata_util.cc
diff --git a/chrome/browser/chromeos/gdata/gdata_util.cc b/chrome/browser/chromeos/gdata/gdata_util.cc
index f99c72fac702a492adbf5d9fb0caaf1f25bdc822..128f1eab38164c92a6eb7ed5c2d5ceec26bf49b9 100644
--- a/chrome/browser/chromeos/gdata/gdata_util.cc
+++ b/chrome/browser/chromeos/gdata/gdata_util.cc
@@ -24,8 +24,8 @@
#include "base/tracked_objects.h"
#include "chrome/browser/chromeos/gdata/drive.pb.h"
#include "chrome/browser/chromeos/gdata/drive_file_system_interface.h"
+#include "chrome/browser/chromeos/gdata/drive_system_service.h"
#include "chrome/browser/chromeos/gdata/file_write_helper.h"
-#include "chrome/browser/chromeos/gdata/gdata_system_service.h"
#include "chrome/browser/chromeos/login/user.h"
#include "chrome/browser/chromeos/login/user_manager.h"
#include "chrome/browser/prefs/pref_service.h"
@@ -62,20 +62,20 @@ const int kReadOnlyFilePermissions = base::PLATFORM_FILE_OPEN |
base::PLATFORM_FILE_ASYNC;
DriveFileSystemInterface* GetDriveFileSystem(Profile* profile) {
- GDataSystemService* system_service =
- GDataSystemServiceFactory::GetForProfile(profile);
+ DriveSystemService* system_service =
+ DriveSystemServiceFactory::GetForProfile(profile);
return system_service ? system_service->file_system() : NULL;
}
DriveCache* GetDriveCache(Profile* profile) {
- GDataSystemService* system_service =
- GDataSystemServiceFactory::GetForProfile(profile);
+ DriveSystemService* system_service =
+ DriveSystemServiceFactory::GetForProfile(profile);
return system_service ? system_service->cache() : NULL;
}
FileWriteHelper* GetFileWriteHelper(Profile* profile) {
- GDataSystemService* system_service =
- GDataSystemServiceFactory::GetForProfile(profile);
+ DriveSystemService* system_service =
+ DriveSystemServiceFactory::GetForProfile(profile);
return system_service ? system_service->file_write_helper() : NULL;
}
« no previous file with comments | « chrome/browser/chromeos/gdata/gdata_uploader.h ('k') | chrome/browser/chromeos/gdata/gdata_wapi_service.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698