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

Unified Diff: webkit/browser/fileapi/syncable/syncable_file_operation_runner_unittest.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/syncable/syncable_file_operation_runner_unittest.cc
diff --git a/webkit/browser/fileapi/syncable/syncable_file_operation_runner_unittest.cc b/webkit/browser/fileapi/syncable/syncable_file_operation_runner_unittest.cc
index 03f1a3d9d9171c816344f155f2ab1598835638c2..26567cc5caba37d8bbf84d74ad69bf4131f36ef0 100644
--- a/webkit/browser/fileapi/syncable/syncable_file_operation_runner_unittest.cc
+++ b/webkit/browser/fileapi/syncable/syncable_file_operation_runner_unittest.cc
@@ -29,7 +29,6 @@ using base::PlatformFileError;
namespace sync_file_system {
namespace {
-const std::string kServiceName = "test";
const std::string kParent = "foo";
const std::string kFile = "foo/file";
const std::string kDir = "foo/dir";
@@ -45,7 +44,7 @@ class SyncableFileOperationRunnerTest : public testing::Test {
// operations in the tests.
SyncableFileOperationRunnerTest()
: message_loop_(base::MessageLoop::TYPE_IO),
- file_system_(GURL("http://example.com"), kServiceName,
+ file_system_(GURL("http://example.com"),
base::MessageLoopProxy::current(),
base::MessageLoopProxy::current()),
callback_count_(0),
@@ -76,7 +75,7 @@ class SyncableFileOperationRunnerTest : public testing::Test {
file_system_.TearDown();
message_loop_.RunUntilIdle();
- RevokeSyncableFileSystem(kServiceName);
+ RevokeSyncableFileSystem();
}
FileSystemURL URL(const std::string& path) {

Powered by Google App Engine
This is Rietveld 408576698