OLD | NEW |
1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 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 CC_TREES_ELEMENT_ID_H_ | 5 #ifndef CC_TREES_ELEMENT_ID_H_ |
6 #define CC_TREES_ELEMENT_ID_H_ | 6 #define CC_TREES_ELEMENT_ID_H_ |
7 | 7 |
8 #include <stddef.h> | 8 #include <stddef.h> |
9 | 9 |
10 #include <cstdint> | 10 #include <cstdint> |
11 #include <functional> | 11 #include <functional> |
12 #include <iosfwd> | 12 #include <iosfwd> |
13 #include <memory> | 13 #include <memory> |
14 | 14 |
15 #include "base/hash.h" | 15 #include "base/hash.h" |
16 #include "cc/base/cc_export.h" | 16 #include "cc/cc_export.h" |
17 | 17 |
18 namespace base { | 18 namespace base { |
19 class Value; | 19 class Value; |
20 namespace trace_event { | 20 namespace trace_event { |
21 class TracedValue; | 21 class TracedValue; |
22 } // namespace trace_event | 22 } // namespace trace_event |
23 } // namespace base | 23 } // namespace base |
24 | 24 |
25 namespace cc { | 25 namespace cc { |
26 | 26 |
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
61 struct CC_EXPORT ElementIdHash { | 61 struct CC_EXPORT ElementIdHash { |
62 size_t operator()(ElementId key) const; | 62 size_t operator()(ElementId key) const; |
63 }; | 63 }; |
64 | 64 |
65 // Stream operator so ElementId can be used in assertion statements. | 65 // Stream operator so ElementId can be used in assertion statements. |
66 CC_EXPORT std::ostream& operator<<(std::ostream& out, const ElementId& id); | 66 CC_EXPORT std::ostream& operator<<(std::ostream& out, const ElementId& id); |
67 | 67 |
68 } // namespace cc | 68 } // namespace cc |
69 | 69 |
70 #endif // CC_TREES_ELEMENT_ID_H_ | 70 #endif // CC_TREES_ELEMENT_ID_H_ |
OLD | NEW |