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

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

Issue 547823002: Track reasons for |Node::SetNeedsStyleRecalc| (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: use const char[] Created 6 years, 3 months 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
(Empty)
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
3 // found in the LICENSE file.
4
5 #include "config.h"
6 #include "core/dom/StyleChangeReason.h"
7
8 namespace blink {
9
10 namespace StyleChangeReasonForTracing {
11 const char ActivePseudoClass[] = "ActivePseudoClass";
12 const char ActiveStylesheetsUpdate[] = "ActiveStylesheetsUpdate";
13 const char Animation[] = "Animation";
14 const char Attribute[] = "Attribute";
15 const char CellBorderPaddingChange[] = "CellBorderPaddingChange";
16 const char Control[] = "Control";
17 const char ControlValue[] = "ControlValue";
18 const char CustomElement[] = "CustomElement";
19 const char DesignMode[] = "DesignMode";
20 const char DisabledPseudoClass[] = "DisabledPseudoClass";
21 const char Drag[] = "Drag";
22 const char EmptyPseudoClass[] = "EmptyPseudoClass";
23 const char FocusPseudoClass[] = "FocusPseudoClass";
24 const char FontSizeChange[] = "FontSizeChange";
25 const char Fonts[] = "Fonts";
26 const char FrameSet[] = "FrameSet";
27 const char FullScreen[] = "FullScreen";
28 const char HoverPseudoClass[] = "HoverPseudoClass";
29 const char Inline[] = "Inline";
30 const char Inspector[] = "Inspector";
31 const char InvalidPseudoClass[] = "InvalidPseudoClass";
32 const char Language[] = "Language";
33 const char LinkColorChange[] = "LinkColorChange";
34 const char PlatformColorChange[] = "PlatformColorChange";
35 const char Plugin[] = "Plugin";
36 const char RequiredOptionalPseudoClass[] = "RequiredOptionalPseudoClass";
37 const char SVGContainerSizeChange[] = "SVGContainerSizeChange";
38 const char SVGCursor[] = "SVGCursor";
39 const char SVGFilterLayerUpdate[] = "SVGFilterLayerUpdate";
40 const char Selector[] = "Selector";
41 const char Shadow[] = "Shadow";
42 const char SiblingSelector[] = "SiblingSelector";
43 const char StyleInvalidator[] = "StyleInvalidator";
44 const char StyleSheetChange[] = "StyleSheetChange";
45 const char ViewportUnits[] = "ViewportUnits";
46 const char VisitedLink[] = "VisitedLink";
47 const char VisuallyOrdered[] = "VisuallyOrdered";
48 const char WritingModeChange[] = "WritingModeChange";
49 const char Zoom[] = "Zoom";
50 } // namespace StyleChangeReasonForTracing
51
52 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698