| 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_INVALIDATION_PUBLIC_ACK_HANDLE_H_ | 5 #ifndef COMPONENTS_INVALIDATION_PUBLIC_ACK_HANDLE_H_ |
| 6 #define COMPONENTS_INVALIDATION_PUBLIC_ACK_HANDLE_H_ | 6 #define COMPONENTS_INVALIDATION_PUBLIC_ACK_HANDLE_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 | 9 |
| 10 #include "base/basictypes.h" | |
| 11 #include "base/memory/scoped_ptr.h" | 10 #include "base/memory/scoped_ptr.h" |
| 12 #include "base/time/time.h" | 11 #include "base/time/time.h" |
| 13 #include "components/invalidation/public/invalidation_export.h" | 12 #include "components/invalidation/public/invalidation_export.h" |
| 14 | 13 |
| 15 namespace base { | 14 namespace base { |
| 16 class DictionaryValue; | 15 class DictionaryValue; |
| 17 } | 16 } |
| 18 | 17 |
| 19 namespace syncer { | 18 namespace syncer { |
| 20 | 19 |
| (...skipping 17 matching lines...) Expand all Loading... |
| 38 // Explicitly copyable and assignable for STL containers. | 37 // Explicitly copyable and assignable for STL containers. |
| 39 AckHandle(const std::string& state, base::Time timestamp); | 38 AckHandle(const std::string& state, base::Time timestamp); |
| 40 | 39 |
| 41 std::string state_; | 40 std::string state_; |
| 42 base::Time timestamp_; | 41 base::Time timestamp_; |
| 43 }; | 42 }; |
| 44 | 43 |
| 45 } // namespace syncer | 44 } // namespace syncer |
| 46 | 45 |
| 47 #endif // COMPONENTS_INVALIDATION_PUBLIC_ACK_HANDLE_H_ | 46 #endif // COMPONENTS_INVALIDATION_PUBLIC_ACK_HANDLE_H_ |
| OLD | NEW |