| 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 #ifndef SYNC_TOOLS_NULL_INVALIDATION_STATE_TRACKER_H_ | 5 #ifndef COMPONENTS_SYNC_TOOLS_NULL_INVALIDATION_STATE_TRACKER_H_ |
| 6 #define SYNC_TOOLS_NULL_INVALIDATION_STATE_TRACKER_H_ | 6 #define COMPONENTS_SYNC_TOOLS_NULL_INVALIDATION_STATE_TRACKER_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 | 9 |
| 10 #include "base/compiler_specific.h" | 10 #include "base/compiler_specific.h" |
| 11 #include "base/memory/weak_ptr.h" | 11 #include "base/memory/weak_ptr.h" |
| 12 #include "components/invalidation/impl/invalidation_state_tracker.h" | 12 #include "components/invalidation/impl/invalidation_state_tracker.h" |
| 13 | 13 |
| 14 namespace syncer { | 14 namespace syncer { |
| 15 | 15 |
| 16 class NullInvalidationStateTracker | 16 class NullInvalidationStateTracker |
| (...skipping 10 matching lines...) Expand all Loading... |
| 27 void SetBootstrapData(const std::string& data) override; | 27 void SetBootstrapData(const std::string& data) override; |
| 28 | 28 |
| 29 void SetSavedInvalidations(const UnackedInvalidationsMap& states) override; | 29 void SetSavedInvalidations(const UnackedInvalidationsMap& states) override; |
| 30 UnackedInvalidationsMap GetSavedInvalidations() const override; | 30 UnackedInvalidationsMap GetSavedInvalidations() const override; |
| 31 | 31 |
| 32 void Clear() override; | 32 void Clear() override; |
| 33 }; | 33 }; |
| 34 | 34 |
| 35 } // namespace syncer | 35 } // namespace syncer |
| 36 | 36 |
| 37 #endif // SYNC_TOOLS_NULL_INVALIDATION_STATE_TRACKER_H_ | 37 #endif // COMPONENTS_SYNC_TOOLS_NULL_INVALIDATION_STATE_TRACKER_H_ |
| OLD | NEW |