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

Unified Diff: sync/test/engine/syncer_command_test.cc

Issue 10825137: FYI: Control Data + Per-Device Metadata (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Add PER_USER_METADATA, refactor some encryption code Created 8 years, 4 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: sync/test/engine/syncer_command_test.cc
diff --git a/sync/test/engine/syncer_command_test.cc b/sync/test/engine/syncer_command_test.cc
index 2439c1ba2c305744d42c1bf3a58bbab89e77e8a6..31ac56ccb0c49ad9bb1d4191b70d66fff8605502 100644
--- a/sync/test/engine/syncer_command_test.cc
+++ b/sync/test/engine/syncer_command_test.cc
@@ -21,6 +21,8 @@ void SyncerCommandTestBase::SetUp() {
// The session always expects there to be a passive worker.
workers()->push_back(
make_scoped_refptr(new FakeModelWorker(GROUP_PASSIVE)));
+ workers()->push_back( // FIXME comment
rlarocque 2012/08/11 01:31:52 FIXME: remove this FIXME.
+ make_scoped_refptr(new FakeModelWorker(GROUP_CONTROL)));
}
void SyncerCommandTestBase::TearDown() {
@@ -56,6 +58,8 @@ void MockDirectorySyncerCommandTest::SetUp() {
// The session always expects there to be a passive worker.
workers()->push_back(
make_scoped_refptr(new FakeModelWorker(GROUP_PASSIVE)));
+ workers()->push_back(
+ make_scoped_refptr(new FakeModelWorker(GROUP_CONTROL)));
ResetContext();
}

Powered by Google App Engine
This is Rietveld 408576698