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

Unified Diff: webkit/browser/fileapi/file_system_context.cc

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/file_system_context.cc
diff --git a/webkit/browser/fileapi/file_system_context.cc b/webkit/browser/fileapi/file_system_context.cc
index c8bb838d81c7e8a310164e499cdd1882e0192696..881a3349b45c5ae2a46bcb24adc1a6fc1a627229 100644
--- a/webkit/browser/fileapi/file_system_context.cc
+++ b/webkit/browser/fileapi/file_system_context.cc
@@ -233,7 +233,6 @@ void FileSystemContext::OpenFileSystem(
}
void FileSystemContext::OpenSyncableFileSystem(
- const std::string& mount_name,
const GURL& origin_url,
FileSystemType type,
OpenFileSystemMode mode,
@@ -242,8 +241,7 @@ void FileSystemContext::OpenSyncableFileSystem(
DCHECK(type == kFileSystemTypeSyncable);
- GURL root_url = sync_file_system::GetSyncableFileSystemRootURI(
- origin_url, mount_name);
+ GURL root_url = sync_file_system::GetSyncableFileSystemRootURI(origin_url);
std::string name = GetFileSystemName(origin_url, kFileSystemTypeSyncable);
FileSystemMountPointProvider* mount_point_provider =

Powered by Google App Engine
This is Rietveld 408576698