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

Unified Diff: chrome/browser/chromeos/gdata/drive_download_observer.h

Issue 10919093: Rename GDataUplaoder to DriveUploader (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix after rebase Created 8 years, 3 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 | « no previous file | chrome/browser/chromeos/gdata/drive_download_observer.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/chromeos/gdata/drive_download_observer.h
diff --git a/chrome/browser/chromeos/gdata/drive_download_observer.h b/chrome/browser/chromeos/gdata/drive_download_observer.h
index 25132f107109b53a5ecf9edc50227ff30cf48aa5..43aa11adbf82c8bb3b1193ecf950b98fa050f373 100644
--- a/chrome/browser/chromeos/gdata/drive_download_observer.h
+++ b/chrome/browser/chromeos/gdata/drive_download_observer.h
@@ -21,7 +21,7 @@ namespace gdata {
class DocumentEntry;
class DriveEntryProto;
class DriveFileSystemInterface;
-class GDataUploader;
+class DriveUploader;
struct UploadFileInfo;
// Observes downloads to temporary local drive folder. Schedules these
@@ -29,7 +29,7 @@ struct UploadFileInfo;
class DriveDownloadObserver : public content::DownloadManager::Observer,
public content::DownloadItem::Observer {
public:
- DriveDownloadObserver(GDataUploader* uploader,
+ DriveDownloadObserver(DriveUploader* uploader,
DriveFileSystemInterface* file_system);
virtual ~DriveDownloadObserver();
@@ -136,7 +136,7 @@ class DriveDownloadObserver : public content::DownloadManager::Observer,
void StartUpload(int32 download_id,
scoped_ptr<UploadFileInfo> upload_file_info);
- // Callback invoked by GDataUploader when the upload associated with
+ // Callback invoked by DriveUploader when the upload associated with
// |download_id| has completed. |error| indicated whether the
// call was successful. This function takes ownership of DocumentEntry from
// |upload_file_info| for use by MoveFileToDriveCache(). It also invokes the
@@ -151,7 +151,7 @@ class DriveDownloadObserver : public content::DownloadManager::Observer,
// Private data.
// The uploader owned by DriveSystemService. Used to trigger file uploads.
- GDataUploader* gdata_uploader_;
+ DriveUploader* drive_uploader_;
// The file system owned by DriveSystemService.
DriveFileSystemInterface* file_system_;
// Observe the DownloadManager for new downloads.
« no previous file with comments | « no previous file | chrome/browser/chromeos/gdata/drive_download_observer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698