| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "sync/internal_api/public/test/fake_sync_manager.h" | 5 #include "sync/internal_api/public/test/fake_sync_manager.h" |
| 6 | 6 |
| 7 #include <cstddef> | 7 #include <cstddef> |
| 8 | 8 |
| 9 #include "base/bind.h" | 9 #include "base/bind.h" |
| 10 #include "base/bind_helpers.h" | 10 #include "base/bind_helpers.h" |
| (...skipping 251 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 262 } | 262 } |
| 263 | 263 |
| 264 void FakeSyncManager::SetInvalidatorEnabled(bool invalidator_enabled) { | 264 void FakeSyncManager::SetInvalidatorEnabled(bool invalidator_enabled) { |
| 265 // Do nothing. | 265 // Do nothing. |
| 266 } | 266 } |
| 267 | 267 |
| 268 void FakeSyncManager::ClearServerData(const ClearServerDataCallback& callback) { | 268 void FakeSyncManager::ClearServerData(const ClearServerDataCallback& callback) { |
| 269 callback.Run(); | 269 callback.Run(); |
| 270 } | 270 } |
| 271 | 271 |
| 272 void FakeSyncManager::OnCookieJarChanged(bool account_mismatch) {} | 272 void FakeSyncManager::OnCookieJarChanged(bool account_mismatch, |
| 273 bool empty_jar) {} |
| 273 | 274 |
| 274 } // namespace syncer | 275 } // namespace syncer |
| OLD | NEW |