OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 COMPONENTS_SYNC_DRIVER_INVALIDATION_ADAPTER_H_ | 5 #ifndef COMPONENTS_SYNC_DRIVER_INVALIDATION_ADAPTER_H_ |
6 #define COMPONENTS_SYNC_DRIVER_INVALIDATION_ADAPTER_H_ | 6 #define COMPONENTS_SYNC_DRIVER_INVALIDATION_ADAPTER_H_ |
7 | 7 |
8 #include <stdint.h> | 8 #include <stdint.h> |
9 | 9 |
10 #include <string> | 10 #include <string> |
(...skipping 16 matching lines...) Expand all Loading... |
27 void Acknowledge() override; | 27 void Acknowledge() override; |
28 void Drop() override; | 28 void Drop() override; |
29 | 29 |
30 private: | 30 private: |
31 syncer::Invalidation invalidation_; | 31 syncer::Invalidation invalidation_; |
32 }; | 32 }; |
33 | 33 |
34 } // namespace browser_sync | 34 } // namespace browser_sync |
35 | 35 |
36 #endif // COMPONENTS_SYNC_DRIVER_INVALIDATION_ADAPTER_H_ | 36 #endif // COMPONENTS_SYNC_DRIVER_INVALIDATION_ADAPTER_H_ |
OLD | NEW |