| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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 "chrome/browser/sync/glue/dummy_invalidator.h" | 5 #include "chrome/browser/sync/glue/dummy_invalidator.h" |
| 6 | 6 |
| 7 DummyInvalidator::DummyInvalidator() {} | 7 DummyInvalidator::DummyInvalidator() {} |
| 8 DummyInvalidator::~DummyInvalidator() {} | 8 DummyInvalidator::~DummyInvalidator() {} |
| 9 | 9 |
| 10 void DummyInvalidator::RegisterHandler(syncer::InvalidationHandler* handler) {} | 10 void DummyInvalidator::RegisterHandler(syncer::InvalidationHandler* handler) {} |
| (...skipping 10 matching lines...) Expand all Loading... |
| 21 | 21 |
| 22 syncer::InvalidatorState DummyInvalidator::GetInvalidatorState() const { | 22 syncer::InvalidatorState DummyInvalidator::GetInvalidatorState() const { |
| 23 return syncer::TRANSIENT_INVALIDATION_ERROR; | 23 return syncer::TRANSIENT_INVALIDATION_ERROR; |
| 24 } | 24 } |
| 25 | 25 |
| 26 void DummyInvalidator::UpdateCredentials( | 26 void DummyInvalidator::UpdateCredentials( |
| 27 const std::string& email, const std::string& token) {} | 27 const std::string& email, const std::string& token) {} |
| 28 | 28 |
| 29 void DummyInvalidator::SendInvalidation( | 29 void DummyInvalidator::SendInvalidation( |
| 30 const syncer::ObjectIdInvalidationMap& invalidation_map) {} | 30 const syncer::ObjectIdInvalidationMap& invalidation_map) {} |
| OLD | NEW |