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

Unified Diff: chrome/browser/sync/profile_sync_service_bookmark_unittest.cc

Issue 1086733002: Ensure tests have an active task runner (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebased. Created 5 years, 8 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: chrome/browser/sync/profile_sync_service_bookmark_unittest.cc
diff --git a/chrome/browser/sync/profile_sync_service_bookmark_unittest.cc b/chrome/browser/sync/profile_sync_service_bookmark_unittest.cc
index 17ed42ee8181372cf4243b57060b5f8257097d3b..5974e36b44ab25dac07a4dcb492e3f6f3abeb954 100644
--- a/chrome/browser/sync/profile_sync_service_bookmark_unittest.cc
+++ b/chrome/browser/sync/profile_sync_service_bookmark_unittest.cc
@@ -328,7 +328,6 @@ class ProfileSyncServiceBookmarkTest : public testing::Test {
ProfileSyncServiceBookmarkTest()
: model_(NULL),
- thread_bundle_(content::TestBrowserThreadBundle::DEFAULT),
local_merge_result_(syncer::BOOKMARKS),
syncer_merge_result_(syncer::BOOKMARKS) {}
@@ -753,6 +752,9 @@ class ProfileSyncServiceBookmarkTest : public testing::Test {
model_->bookmark_bar_node()->id());
}
+ private:
+ content::TestBrowserThreadBundle thread_bundle_;
+
protected:
TestingProfile profile_;
BookmarkModel* model_;
@@ -762,7 +764,6 @@ class ProfileSyncServiceBookmarkTest : public testing::Test {
scoped_ptr<BookmarkModelAssociator> model_associator_;
private:
- content::TestBrowserThreadBundle thread_bundle_;
syncer::SyncMergeResult local_merge_result_;
syncer::SyncMergeResult syncer_merge_result_;
};

Powered by Google App Engine
This is Rietveld 408576698