Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(153)

Side by Side Diff: components/invalidation/public/ack_handle.h

Issue 1548113002: Switch to standard integer types in components/, part 2 of 4. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: gn Created 4 years, 12 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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_
OLDNEW
« no previous file with comments | « components/invalidation/impl/unacked_invalidation_set_unittest.cc ('k') | components/invalidation/public/ack_handle.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698