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/text/AtomicString.h" | 9 #include "wtf/text/AtomicString.h" |
10 #include "wtf/text/WTFString.h" | 10 #include "wtf/text/WTFString.h" |
(...skipping 21 matching lines...) Expand all Loading... |
32 extern const char Language[]; | 32 extern const char Language[]; |
33 extern const char LinkColorChange[]; | 33 extern const char LinkColorChange[]; |
34 extern const char PlatformColorChange[]; | 34 extern const char PlatformColorChange[]; |
35 extern const char PropagateInheritChangeToDistributedNodes[]; | 35 extern const char PropagateInheritChangeToDistributedNodes[]; |
36 extern const char PropertyRegistration[]; | 36 extern const char PropertyRegistration[]; |
37 extern const char PropertyUnregistration[]; | 37 extern const char PropertyUnregistration[]; |
38 extern const char PseudoClass[]; | 38 extern const char PseudoClass[]; |
39 extern const char SVGContainerSizeChange[]; | 39 extern const char SVGContainerSizeChange[]; |
40 extern const char SVGCursor[]; | 40 extern const char SVGCursor[]; |
41 extern const char SVGFilterLayerUpdate[]; | 41 extern const char SVGFilterLayerUpdate[]; |
| 42 extern const char SVGResourceChange[]; |
42 extern const char Settings[]; | 43 extern const char Settings[]; |
43 extern const char Shadow[]; | 44 extern const char Shadow[]; |
44 extern const char StyleInvalidator[]; | 45 extern const char StyleInvalidator[]; |
45 extern const char StyleSheetChange[]; | 46 extern const char StyleSheetChange[]; |
46 extern const char ViewportUnits[]; | 47 extern const char ViewportUnits[]; |
47 extern const char VisitedLink[]; | 48 extern const char VisitedLink[]; |
48 extern const char VisuallyOrdered[]; | 49 extern const char VisuallyOrdered[]; |
49 extern const char WritingModeChange[]; | 50 extern const char WritingModeChange[]; |
50 extern const char Zoom[]; | 51 extern const char Zoom[]; |
51 } // namespace StyleChangeReason | 52 } // namespace StyleChangeReason |
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
101 void operator==(const StyleChangeReasonForTracing&) const {} | 102 void operator==(const StyleChangeReasonForTracing&) const {} |
102 void operator!=(const StyleChangeReasonForTracing&) const {} | 103 void operator!=(const StyleChangeReasonForTracing&) const {} |
103 | 104 |
104 const char* m_reason; | 105 const char* m_reason; |
105 AtomicString m_extraData; | 106 AtomicString m_extraData; |
106 }; | 107 }; |
107 | 108 |
108 } // namespace blink | 109 } // namespace blink |
109 | 110 |
110 #endif // StyleChangeReason_h | 111 #endif // StyleChangeReason_h |
OLD | NEW |