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

Unified Diff: sync/engine/verify_updates_command_unittest.cc

Issue 10735041: Remove syncproto.h (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Address most comments Created 8 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « sync/engine/verify_updates_command.cc ('k') | sync/sessions/session_state.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sync/engine/verify_updates_command_unittest.cc
diff --git a/sync/engine/verify_updates_command_unittest.cc b/sync/engine/verify_updates_command_unittest.cc
index 8bf9ead7da00db25adc46acd64ec96d7e4eb4553..3375af81bf1bc458e61f15f6fe9c177af5c91f3e 100644
--- a/sync/engine/verify_updates_command_unittest.cc
+++ b/sync/engine/verify_updates_command_unittest.cc
@@ -52,7 +52,7 @@ class VerifyUpdatesCommandTest : public SyncerCommandTest {
entry.Put(syncable::SERVER_SPECIFICS, default_specifics);
}
- void AddUpdate(GetUpdatesResponse* updates,
+ void AddUpdate(sync_pb::GetUpdatesResponse* updates,
const std::string& id, const std::string& parent,
const syncer::ModelType& type) {
sync_pb::SyncEntity* e = updates->add_entries();
@@ -77,7 +77,8 @@ TEST_F(VerifyUpdatesCommandTest, AllVerified) {
ExpectNoGroupsToChange(command_);
- GetUpdatesResponse* updates = session()->mutable_status_controller()->
+ sync_pb::GetUpdatesResponse* updates =
+ session()->mutable_status_controller()->
mutable_updates_response()->mutable_get_updates();
AddUpdate(updates, "b1", root, syncer::BOOKMARKS);
AddUpdate(updates, "b2", root, syncer::BOOKMARKS);
« no previous file with comments | « sync/engine/verify_updates_command.cc ('k') | sync/sessions/session_state.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698