| 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) {
|
|
|