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 #include "core/dom/StyleChangeReason.h" | 5 #include "core/dom/StyleChangeReason.h" |
6 | 6 |
7 #include "platform/TraceEvent.h" | 7 #include "platform/TraceEvent.h" |
8 #include "wtf/StaticConstructors.h" | 8 #include "wtf/StaticConstructors.h" |
9 | 9 |
10 namespace blink { | 10 namespace blink { |
(...skipping 11 matching lines...) Expand all Loading... |
22 const char FontSizeChange[] = "FontSizeChange"; | 22 const char FontSizeChange[] = "FontSizeChange"; |
23 const char Fonts[] = "Fonts"; | 23 const char Fonts[] = "Fonts"; |
24 const char FullScreen[] = "FullScreen"; | 24 const char FullScreen[] = "FullScreen"; |
25 const char Inline[] = "Inline"; | 25 const char Inline[] = "Inline"; |
26 const char InlineCSSStyleMutated[] = "Inline CSS style declaration was mutated"; | 26 const char InlineCSSStyleMutated[] = "Inline CSS style declaration was mutated"; |
27 const char Inspector[] = "Inspector"; | 27 const char Inspector[] = "Inspector"; |
28 const char Language[] = "Language"; | 28 const char Language[] = "Language"; |
29 const char LinkColorChange[] = "LinkColorChange"; | 29 const char LinkColorChange[] = "LinkColorChange"; |
30 const char PlatformColorChange[] = "PlatformColorChange"; | 30 const char PlatformColorChange[] = "PlatformColorChange"; |
31 const char PropagateInheritChangeToDistributedNodes[] = "PropagateInheritChangeT
oDistributedNodes"; | 31 const char PropagateInheritChangeToDistributedNodes[] = "PropagateInheritChangeT
oDistributedNodes"; |
| 32 const char PropertyRegistration[] = "PropertyRegistration"; |
| 33 const char PropertyUnregistration[] = "PropertyUnregistration"; |
32 const char PseudoClass[] = "PseudoClass"; | 34 const char PseudoClass[] = "PseudoClass"; |
33 const char SVGContainerSizeChange[] = "SVGContainerSizeChange"; | 35 const char SVGContainerSizeChange[] = "SVGContainerSizeChange"; |
34 const char SVGCursor[] = "SVGCursor"; | 36 const char SVGCursor[] = "SVGCursor"; |
35 const char SVGFilterLayerUpdate[] = "SVGFilterLayerUpdate"; | 37 const char SVGFilterLayerUpdate[] = "SVGFilterLayerUpdate"; |
36 const char Settings[] = "Settings"; | 38 const char Settings[] = "Settings"; |
37 const char Shadow[] = "Shadow"; | 39 const char Shadow[] = "Shadow"; |
38 const char StyleInvalidator[] = "StyleInvalidator"; | 40 const char StyleInvalidator[] = "StyleInvalidator"; |
39 const char StyleSheetChange[] = "StyleSheetChange"; | 41 const char StyleSheetChange[] = "StyleSheetChange"; |
40 const char ViewportUnits[] = "ViewportUnits"; | 42 const char ViewportUnits[] = "ViewportUnits"; |
41 const char VisitedLink[] = "VisitedLink"; | 43 const char VisitedLink[] = "VisitedLink"; |
(...skipping 20 matching lines...) Expand all Loading... |
62 new (NotNull, (void*)&Drag) AtomicString(":-webkit-drag"); | 64 new (NotNull, (void*)&Drag) AtomicString(":-webkit-drag"); |
63 new (NotNull, (void*)&Focus) AtomicString(":focus"); | 65 new (NotNull, (void*)&Focus) AtomicString(":focus"); |
64 new (NotNull, (void*)&Hover) AtomicString(":hover"); | 66 new (NotNull, (void*)&Hover) AtomicString(":hover"); |
65 new (NotNull, (void*)&Past) AtomicString(":past"); | 67 new (NotNull, (void*)&Past) AtomicString(":past"); |
66 new (NotNull, (void*)&Unresolved) AtomicString(":unresolved"); | 68 new (NotNull, (void*)&Unresolved) AtomicString(":unresolved"); |
67 } | 69 } |
68 | 70 |
69 } // namespace StyleChangeExtraData | 71 } // namespace StyleChangeExtraData |
70 | 72 |
71 } // namespace blink | 73 } // namespace blink |
OLD | NEW |