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

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

Issue 1060973003: compositor-worker: Force elements to grow a layer when a CompositorProxy is created. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: tot-merge Created 5 years, 8 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 | Annotate | Revision Log
« no previous file with comments | « Source/core/dom/StyleChangeReason.h ('k') | Source/core/layout/LayoutBox.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 "config.h" 5 #include "config.h"
6 #include "core/dom/StyleChangeReason.h" 6 #include "core/dom/StyleChangeReason.h"
7 7
8 #include "platform/TraceEvent.h" 8 #include "platform/TraceEvent.h"
9 #include "wtf/MainThread.h" 9 #include "wtf/MainThread.h"
10 #include "wtf/StaticConstructors.h" 10 #include "wtf/StaticConstructors.h"
11 11
12 namespace blink { 12 namespace blink {
13 13
14 namespace StyleChangeReason { 14 namespace StyleChangeReason {
15 const char ActiveStylesheetsUpdate[] = "ActiveStylesheetsUpdate"; 15 const char ActiveStylesheetsUpdate[] = "ActiveStylesheetsUpdate";
16 const char Animation[] = "Animation"; 16 const char Animation[] = "Animation";
17 const char Attribute[] = "Attribute"; 17 const char Attribute[] = "Attribute";
18 const char CompositorProxy[] = "CompositorProxy";
18 const char ControlValue[] = "ControlValue"; 19 const char ControlValue[] = "ControlValue";
19 const char Control[] = "Control"; 20 const char Control[] = "Control";
20 const char DesignMode[] = "DesignMode"; 21 const char DesignMode[] = "DesignMode";
21 const char Drag[] = "Drag"; 22 const char Drag[] = "Drag";
22 const char FontSizeChange[] = "FontSizeChange"; 23 const char FontSizeChange[] = "FontSizeChange";
23 const char Fonts[] = "Fonts"; 24 const char Fonts[] = "Fonts";
24 const char FullScreen[] = "FullScreen"; 25 const char FullScreen[] = "FullScreen";
25 const char Inline[] = "Inline"; 26 const char Inline[] = "Inline";
26 const char InlineCSSStyleMutated[] = "Inline CSS style declaration was mutated"; 27 const char InlineCSSStyleMutated[] = "Inline CSS style declaration was mutated";
27 const char Inspector[] = "Inspector"; 28 const char Inspector[] = "Inspector";
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
61 new (NotNull, (void*)&Disabled) AtomicString(":disabled", AtomicString::Cons tructFromLiteral); 62 new (NotNull, (void*)&Disabled) AtomicString(":disabled", AtomicString::Cons tructFromLiteral);
62 new (NotNull, (void*)&Focus) AtomicString(":focus", AtomicString::ConstructF romLiteral); 63 new (NotNull, (void*)&Focus) AtomicString(":focus", AtomicString::ConstructF romLiteral);
63 new (NotNull, (void*)&Hover) AtomicString(":hover", AtomicString::ConstructF romLiteral); 64 new (NotNull, (void*)&Hover) AtomicString(":hover", AtomicString::ConstructF romLiteral);
64 new (NotNull, (void*)&Past) AtomicString(":past", AtomicString::ConstructFro mLiteral); 65 new (NotNull, (void*)&Past) AtomicString(":past", AtomicString::ConstructFro mLiteral);
65 new (NotNull, (void*)&Unresolved) AtomicString(":unresolved", AtomicString:: ConstructFromLiteral); 66 new (NotNull, (void*)&Unresolved) AtomicString(":unresolved", AtomicString:: ConstructFromLiteral);
66 } 67 }
67 68
68 } // namespace StyleChangeExtraData 69 } // namespace StyleChangeExtraData
69 70
70 } // namespace blink 71 } // namespace blink
OLDNEW
« no previous file with comments | « Source/core/dom/StyleChangeReason.h ('k') | Source/core/layout/LayoutBox.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698