| 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_ENGINE_IMPL_GET_UPDATES_DELEGATE_H_ | 5 #ifndef COMPONENTS_SYNC_ENGINE_IMPL_GET_UPDATES_DELEGATE_H_ |
| 6 #define COMPONENTS_SYNC_ENGINE_IMPL_GET_UPDATES_DELEGATE_H_ | 6 #define COMPONENTS_SYNC_ENGINE_IMPL_GET_UPDATES_DELEGATE_H_ |
| 7 | 7 |
| 8 #include <memory> | 8 #include <memory> |
| 9 | 9 |
| 10 #include "base/macros.h" | 10 #include "base/macros.h" |
| (...skipping 105 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 116 std::unique_ptr<ProtocolEvent> GetNetworkRequestEvent( | 116 std::unique_ptr<ProtocolEvent> GetNetworkRequestEvent( |
| 117 base::Time timestamp, | 117 base::Time timestamp, |
| 118 const sync_pb::ClientToServerMessage& request) const override; | 118 const sync_pb::ClientToServerMessage& request) const override; |
| 119 | 119 |
| 120 private: | 120 private: |
| 121 DISALLOW_COPY_AND_ASSIGN(PollGetUpdatesDelegate); | 121 DISALLOW_COPY_AND_ASSIGN(PollGetUpdatesDelegate); |
| 122 }; | 122 }; |
| 123 | 123 |
| 124 } // namespace syncer | 124 } // namespace syncer |
| 125 | 125 |
| 126 #endif // SYNC_ENGINE_IMPL_GET_UPDATES_DELEGATE_H_ | 126 #endif // COMPONENTS_SYNC_ENGINE_IMPL_GET_UPDATES_DELEGATE_H_ |
| OLD | NEW |