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

Unified Diff: webkit/browser/fileapi/syncable/local_file_sync_context.h

Issue 16109008: Cleanup: Deprecate DriveFileSyncService::kServiceName (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 7 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: webkit/browser/fileapi/syncable/local_file_sync_context.h
diff --git a/webkit/browser/fileapi/syncable/local_file_sync_context.h b/webkit/browser/fileapi/syncable/local_file_sync_context.h
index 3ad650e9f244b98d5f606e47793aed97ec7237da..2f2b355556abec4e1004ae35b39da0e254c574f4 100644
--- a/webkit/browser/fileapi/syncable/local_file_sync_context.h
+++ b/webkit/browser/fileapi/syncable/local_file_sync_context.h
@@ -62,13 +62,12 @@ class WEBKIT_STORAGE_EXPORT LocalFileSyncContext
LocalFileSyncContext(base::SingleThreadTaskRunner* ui_task_runner,
base::SingleThreadTaskRunner* io_task_runner);
- // Initializes |file_system_context| for syncable file operations for
- // |service_name| and registers the it into the internal map.
+ // Initializes |file_system_context| for syncable file operations
+ // and registers the it into the internal map.
// Calling this multiple times for the same file_system_context is valid.
// This method must be called on UI thread.
void MaybeInitializeFileSystemContext(
const GURL& source_url,
- const std::string& service_name,
fileapi::FileSystemContext* file_system_context,
const SyncStatusCallback& callback);
@@ -190,7 +189,6 @@ class WEBKIT_STORAGE_EXPORT LocalFileSyncContext
// Helper routines for MaybeInitializeFileSystemContext.
void InitializeFileSystemContextOnIOThread(
const GURL& source_url,
- const std::string& service_name,
fileapi::FileSystemContext* file_system_context);
SyncStatusCode InitializeChangeTrackerOnFileThread(
scoped_ptr<LocalFileChangeTracker>* tracker_ptr,
@@ -199,7 +197,6 @@ class WEBKIT_STORAGE_EXPORT LocalFileSyncContext
void DidInitializeChangeTrackerOnIOThread(
scoped_ptr<LocalFileChangeTracker>* tracker_ptr,
const GURL& source_url,
- const std::string& service_name,
fileapi::FileSystemContext* file_system_context,
std::set<GURL>* origins_with_changes,
SyncStatusCode status);

Powered by Google App Engine
This is Rietveld 408576698