summaryrefslogtreecommitdiffstats
path: root/chrome/test/sync/engine/syncer_command_test.h
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/test/sync/engine/syncer_command_test.h')
-rw-r--r--chrome/test/sync/engine/syncer_command_test.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/chrome/test/sync/engine/syncer_command_test.h b/chrome/test/sync/engine/syncer_command_test.h
index eed8def..02ea57d 100644
--- a/chrome/test/sync/engine/syncer_command_test.h
+++ b/chrome/test/sync/engine/syncer_command_test.h
@@ -48,6 +48,9 @@ class SyncerCommandTestWithParam : public testing::TestWithParam<T>,
virtual void OnShouldStopSyncingPermanently() {
FAIL() << "Shouldn't be forced to stop syncing.";
}
+ virtual void SignalUpdatedToken(const std::string& token) {
+ FAIL() << "Should never update token.";
+ }
// ModelSafeWorkerRegistrar implementation.
virtual void GetWorkers(std::vector<ModelSafeWorker*>* out) {
@@ -91,7 +94,7 @@ class SyncerCommandTestWithParam : public testing::TestWithParam<T>,
void ResetContext() {
context_.reset(new sessions::SyncSessionContext(
- mock_server_.get(), NULL, syncdb_->manager(), registrar()));
+ mock_server_.get(), syncdb_->manager(), registrar()));
context_->set_account_name(syncdb_->name());
ClearSession();
}