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

Unified Diff: chrome/browser/chromeos/drive/drive_file_system.cc

Issue 14493009: drive: Rename DriveScheduler to JobScheduler (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix indent Created 7 years, 8 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/drive/drive_file_system.cc
diff --git a/chrome/browser/chromeos/drive/drive_file_system.cc b/chrome/browser/chromeos/drive/drive_file_system.cc
index d427c969f26a031f7110b88023fdad13f8fd1902..28be6b7f1e1ac8e196ae2ea5238dd92140374e4d 100644
--- a/chrome/browser/chromeos/drive/drive_file_system.cc
+++ b/chrome/browser/chromeos/drive/drive_file_system.cc
@@ -18,8 +18,8 @@
#include "chrome/browser/chromeos/drive/drive.pb.h"
#include "chrome/browser/chromeos/drive/drive_cache.h"
#include "chrome/browser/chromeos/drive/drive_file_system_util.h"
-#include "chrome/browser/chromeos/drive/drive_scheduler.h"
#include "chrome/browser/chromeos/drive/file_system_observer.h"
+#include "chrome/browser/chromeos/drive/job_scheduler.h"
#include "chrome/browser/chromeos/drive/resource_entry_conversion.h"
#include "chrome/browser/chromeos/drive/search_metadata.h"
#include "chrome/browser/google_apis/drive_api_parser.h"
@@ -209,7 +209,7 @@ DriveFileSystem::DriveFileSystem(
Profile* profile,
DriveCache* cache,
google_apis::DriveServiceInterface* drive_service,
- DriveScheduler* scheduler,
+ JobScheduler* scheduler,
DriveWebAppsRegistry* webapps_registry,
DriveResourceMetadata* resource_metadata,
base::SequencedTaskRunner* blocking_task_runner)
@@ -670,7 +670,7 @@ void DriveFileSystem::GetFileContentByPathAfterGetEntry(
void DriveFileSystem::CancelGetFile(const base::FilePath& drive_file_path) {
// Currently the task is managed on DriveServiceInterface, so we directly
// call its method here.
- // Note: the task management will be moved to DriveScheduler, an the we
+ // Note: the task management will be moved to JobScheduler, an the we
// can cancel the job via the |scheduler_|.
drive_service_->CancelForFilePath(drive_file_path);
}
« no previous file with comments | « chrome/browser/chromeos/drive/drive_file_system.h ('k') | chrome/browser/chromeos/drive/drive_file_system_interface.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698