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

Side by Side Diff: third_party/WebKit/Source/core/dom/StyleChangeReason.cpp

Issue 2490163002: Reland of "Tracking reference filter mutation via SVGElementProxy" (Closed)
Patch Set: Fix double observer unregistration; simplify scope selection; add tests Created 4 years, 1 month 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 #include "core/dom/StyleChangeReason.h" 5 #include "core/dom/StyleChangeReason.h"
6 6
7 #include "platform/tracing/TraceEvent.h" 7 #include "platform/tracing/TraceEvent.h"
8 #include "wtf/StaticConstructors.h" 8 #include "wtf/StaticConstructors.h"
9 9
10 namespace blink { 10 namespace blink {
(...skipping 17 matching lines...) Expand all
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[] = 31 const char PropagateInheritChangeToDistributedNodes[] =
32 "PropagateInheritChangeToDistributedNodes"; 32 "PropagateInheritChangeToDistributedNodes";
33 const char PropertyRegistration[] = "PropertyRegistration"; 33 const char PropertyRegistration[] = "PropertyRegistration";
34 const char PropertyUnregistration[] = "PropertyUnregistration"; 34 const char PropertyUnregistration[] = "PropertyUnregistration";
35 const char PseudoClass[] = "PseudoClass"; 35 const char PseudoClass[] = "PseudoClass";
36 const char SVGContainerSizeChange[] = "SVGContainerSizeChange"; 36 const char SVGContainerSizeChange[] = "SVGContainerSizeChange";
37 const char SVGCursor[] = "SVGCursor"; 37 const char SVGCursor[] = "SVGCursor";
38 const char SVGFilterLayerUpdate[] = "SVGFilterLayerUpdate";
39 const char Settings[] = "Settings"; 38 const char Settings[] = "Settings";
40 const char Shadow[] = "Shadow"; 39 const char Shadow[] = "Shadow";
41 const char StyleInvalidator[] = "StyleInvalidator"; 40 const char StyleInvalidator[] = "StyleInvalidator";
42 const char StyleSheetChange[] = "StyleSheetChange"; 41 const char StyleSheetChange[] = "StyleSheetChange";
43 const char ViewportUnits[] = "ViewportUnits"; 42 const char ViewportUnits[] = "ViewportUnits";
44 const char VisitedLink[] = "VisitedLink"; 43 const char VisitedLink[] = "VisitedLink";
45 const char VisuallyOrdered[] = "VisuallyOrdered"; 44 const char VisuallyOrdered[] = "VisuallyOrdered";
46 const char WritingModeChange[] = "WritingModeChange"; 45 const char WritingModeChange[] = "WritingModeChange";
47 const char Zoom[] = "Zoom"; 46 const char Zoom[] = "Zoom";
48 } // namespace StyleChangeReason 47 } // namespace StyleChangeReason
(...skipping 15 matching lines...) Expand all
64 new (NotNull, (void*)&Drag) AtomicString(":-webkit-drag"); 63 new (NotNull, (void*)&Drag) AtomicString(":-webkit-drag");
65 new (NotNull, (void*)&Focus) AtomicString(":focus"); 64 new (NotNull, (void*)&Focus) AtomicString(":focus");
66 new (NotNull, (void*)&Hover) AtomicString(":hover"); 65 new (NotNull, (void*)&Hover) AtomicString(":hover");
67 new (NotNull, (void*)&Past) AtomicString(":past"); 66 new (NotNull, (void*)&Past) AtomicString(":past");
68 new (NotNull, (void*)&Unresolved) AtomicString(":unresolved"); 67 new (NotNull, (void*)&Unresolved) AtomicString(":unresolved");
69 } 68 }
70 69
71 } // namespace StyleChangeExtraData 70 } // namespace StyleChangeExtraData
72 71
73 } // namespace blink 72 } // namespace blink
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/dom/StyleChangeReason.h ('k') | third_party/WebKit/Source/core/fetch/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698