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

Unified Diff: chrome/browser/sync/sessions/sync_session_unittest.cc

Issue 8189003: Send important client side event information to the server. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: For review Created 9 years, 2 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/sessions/sync_session_unittest.cc
diff --git a/chrome/browser/sync/sessions/sync_session_unittest.cc b/chrome/browser/sync/sessions/sync_session_unittest.cc
index 7d7a7150c89463055dcd80d9a46941bd7c505976..8c4680244585b2eea45ba2419cae1321c9b6960d 100644
--- a/chrome/browser/sync/sessions/sync_session_unittest.cc
+++ b/chrome/browser/sync/sessions/sync_session_unittest.cc
@@ -37,7 +37,7 @@ class SyncSessionTest : public testing::Test,
virtual void SetUp() {
context_.reset(new SyncSessionContext(NULL, NULL, this,
- std::vector<SyncEngineEventListener*>()));
+ std::vector<SyncEngineEventListener*>(), NULL));
routes_.clear();
routes_[syncable::BOOKMARKS] = GROUP_UI;
routes_[syncable::AUTOFILL] = GROUP_UI;
@@ -122,7 +122,7 @@ TEST_F(SyncSessionTest, SetWriteTransaction) {
db.SetUp();
session_.reset();
context_.reset(new SyncSessionContext(NULL, db.manager(), this,
- std::vector<SyncEngineEventListener*>()));
+ std::vector<SyncEngineEventListener*>(), NULL));
session_.reset(MakeSession());
context_->set_account_name(db.name());
syncable::ScopedDirLookup dir(context_->directory_manager(),

Powered by Google App Engine
This is Rietveld 408576698