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 StyleChangeReason_h | 5 #ifndef StyleChangeReason_h |
6 #define StyleChangeReason_h | 6 #define StyleChangeReason_h |
7 | 7 |
8 #include "core/dom/QualifiedName.h" | 8 #include "core/dom/QualifiedName.h" |
9 #include "wtf/PassRefPtr.h" | |
10 #include "wtf/text/AtomicString.h" | 9 #include "wtf/text/AtomicString.h" |
11 #include "wtf/text/WTFString.h" | 10 #include "wtf/text/WTFString.h" |
12 | 11 |
13 namespace blink { | 12 namespace blink { |
14 | 13 |
15 class QualifiedName; | 14 class QualifiedName; |
16 | 15 |
17 namespace StyleChangeReason { | 16 namespace StyleChangeReason { |
18 extern const char ActiveStylesheetsUpdate[]; | 17 extern const char ActiveStylesheetsUpdate[]; |
19 extern const char Animation[]; | 18 extern const char Animation[]; |
(...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
101 void operator==(const StyleChangeReasonForTracing&) const { } | 100 void operator==(const StyleChangeReasonForTracing&) const { } |
102 void operator!=(const StyleChangeReasonForTracing&) const { } | 101 void operator!=(const StyleChangeReasonForTracing&) const { } |
103 | 102 |
104 const char* m_reason; | 103 const char* m_reason; |
105 AtomicString m_extraData; | 104 AtomicString m_extraData; |
106 }; | 105 }; |
107 | 106 |
108 } // namespace blink | 107 } // namespace blink |
109 | 108 |
110 #endif // StyleChangeReason_h | 109 #endif // StyleChangeReason_h |
OLD | NEW |