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

Side by Side Diff: sync/syncable/syncable_unittest.cc

Issue 375403002: Replace MessageLoopProxy with ThreadTaskRunnerHandle in src/sync/. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 5 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « sync/sessions/model_type_registry_unittest.cc ('k') | sync/tools/sync_client.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2012 The Chromium Authors. All rights reserved. 1 // Copyright 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include <string> 5 #include <string>
6 6
7 #include "base/basictypes.h" 7 #include "base/basictypes.h"
8 #include "base/compiler_specific.h" 8 #include "base/compiler_specific.h"
9 #include "base/file_util.h" 9 #include "base/file_util.h"
10 #include "base/files/file_path.h" 10 #include "base/files/file_path.h"
(...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after
117 TestDirectory::TestDirectory(Encryptor* encryptor, 117 TestDirectory::TestDirectory(Encryptor* encryptor,
118 UnrecoverableErrorHandler* handler, 118 UnrecoverableErrorHandler* handler,
119 TestBackingStore* backing_store) 119 TestBackingStore* backing_store)
120 : Directory(backing_store, handler, NULL, NULL, NULL), 120 : Directory(backing_store, handler, NULL, NULL, NULL),
121 backing_store_(backing_store) { 121 backing_store_(backing_store) {
122 } 122 }
123 123
124 TestDirectory::~TestDirectory() { } 124 TestDirectory::~TestDirectory() { }
125 125
126 TEST(OnDiskSyncableDirectory, FailInitialWrite) { 126 TEST(OnDiskSyncableDirectory, FailInitialWrite) {
127 base::MessageLoop message_loop;
maniscalco 2014/07/09 18:53:40 You may be wondering why the heck are we adding a
127 FakeEncryptor encryptor; 128 FakeEncryptor encryptor;
128 TestUnrecoverableErrorHandler handler; 129 TestUnrecoverableErrorHandler handler;
129 base::ScopedTempDir temp_dir; 130 base::ScopedTempDir temp_dir;
130 ASSERT_TRUE(temp_dir.CreateUniqueTempDir()); 131 ASSERT_TRUE(temp_dir.CreateUniqueTempDir());
131 base::FilePath file_path = temp_dir.path().Append( 132 base::FilePath file_path = temp_dir.path().Append(
132 FILE_PATH_LITERAL("Test.sqlite3")); 133 FILE_PATH_LITERAL("Test.sqlite3"));
133 std::string name = "user@x.com"; 134 std::string name = "user@x.com";
134 NullDirectoryChangeDelegate delegate; 135 NullDirectoryChangeDelegate delegate;
135 136
136 scoped_ptr<TestDirectory> test_dir( 137 scoped_ptr<TestDirectory> test_dir(
(...skipping 536 matching lines...) Expand 10 before | Expand all | Expand 10 after
673 TEST_F(SyncableClientTagTest, TestClientTagIndexDuplicateServer) { 674 TEST_F(SyncableClientTagTest, TestClientTagIndexDuplicateServer) {
674 EXPECT_TRUE(CreateWithDefaultTag(factory_.NewServerId(), true)); 675 EXPECT_TRUE(CreateWithDefaultTag(factory_.NewServerId(), true));
675 EXPECT_FALSE(CreateWithDefaultTag(factory_.NewServerId(), true)); 676 EXPECT_FALSE(CreateWithDefaultTag(factory_.NewServerId(), true));
676 EXPECT_FALSE(CreateWithDefaultTag(factory_.NewServerId(), false)); 677 EXPECT_FALSE(CreateWithDefaultTag(factory_.NewServerId(), false));
677 EXPECT_FALSE(CreateWithDefaultTag(factory_.NewLocalId(), false)); 678 EXPECT_FALSE(CreateWithDefaultTag(factory_.NewLocalId(), false));
678 EXPECT_FALSE(CreateWithDefaultTag(factory_.NewLocalId(), true)); 679 EXPECT_FALSE(CreateWithDefaultTag(factory_.NewLocalId(), true));
679 } 680 }
680 681
681 } // namespace syncable 682 } // namespace syncable
682 } // namespace syncer 683 } // namespace syncer
OLDNEW
« no previous file with comments | « sync/sessions/model_type_registry_unittest.cc ('k') | sync/tools/sync_client.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698