| Index: chrome/test/sync/engine/syncer_command_test.h
|
| ===================================================================
|
| --- chrome/test/sync/engine/syncer_command_test.h (revision 58702)
|
| +++ chrome/test/sync/engine/syncer_command_test.h (working copy)
|
| @@ -48,6 +48,9 @@
|
| 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 @@
|
|
|
| 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();
|
| }
|
|
|