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 // An InvalidationVersionTracker is an interface that handles getting | 5 // An InvalidationVersionTracker is an interface that handles getting |
6 // and setting (persisting) max invalidation versions. | 6 // and setting (persisting) max invalidation versions. |
7 | 7 |
8 #ifndef SYNC_NOTIFIER_INVALIDATION_VERSION_TRACKER_H_ | 8 #ifndef SYNC_NOTIFIER_INVALIDATION_VERSION_TRACKER_H_ |
9 #define SYNC_NOTIFIER_INVALIDATION_VERSION_TRACKER_H_ | 9 #define SYNC_NOTIFIER_INVALIDATION_VERSION_TRACKER_H_ |
10 | 10 |
(...skipping 18 matching lines...) Expand all Loading... |
29 int64 max_version) = 0; | 29 int64 max_version) = 0; |
30 | 30 |
31 protected: | 31 protected: |
32 virtual ~InvalidationVersionTracker() {} | 32 virtual ~InvalidationVersionTracker() {} |
33 }; | 33 }; |
34 | 34 |
35 } // namespace sync_notifier | 35 } // namespace sync_notifier |
36 | 36 |
37 #endif // SYNC_NOTIFIER_INVALIDATION_VERSION_TRACKER_H_ | 37 #endif // SYNC_NOTIFIER_INVALIDATION_VERSION_TRACKER_H_ |
38 | 38 |
OLD | NEW |