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

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

Issue 2812013004: Rewrite references to "wtf/" to "platform/wtf/" in core/{dom,html,xml}. (Closed)
Patch Set: Created 3 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
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/instrumentation/tracing/TraceEvent.h" 7 #include "platform/instrumentation/tracing/TraceEvent.h"
8 #include "wtf/StaticConstructors.h" 8 #include "platform/wtf/StaticConstructors.h"
9 9
10 namespace blink { 10 namespace blink {
11 11
12 namespace StyleChangeReason { 12 namespace StyleChangeReason {
13 const char kActiveStylesheetsUpdate[] = "ActiveStylesheetsUpdate"; 13 const char kActiveStylesheetsUpdate[] = "ActiveStylesheetsUpdate";
14 const char kAnimation[] = "Animation"; 14 const char kAnimation[] = "Animation";
15 const char kAttribute[] = "Attribute"; 15 const char kAttribute[] = "Attribute";
16 const char kCleanupPlaceholderStyles[] = "CleanupPlaceholderStyles"; 16 const char kCleanupPlaceholderStyles[] = "CleanupPlaceholderStyles";
17 const char kCompositorProxy[] = "CompositorProxy"; 17 const char kCompositorProxy[] = "CompositorProxy";
18 const char kControlValue[] = "ControlValue"; 18 const char kControlValue[] = "ControlValue";
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after
64 new (NotNull, (void*)&g_drag) AtomicString(":-webkit-drag"); 64 new (NotNull, (void*)&g_drag) AtomicString(":-webkit-drag");
65 new (NotNull, (void*)&g_focus) AtomicString(":focus"); 65 new (NotNull, (void*)&g_focus) AtomicString(":focus");
66 new (NotNull, (void*)&g_hover) AtomicString(":hover"); 66 new (NotNull, (void*)&g_hover) AtomicString(":hover");
67 new (NotNull, (void*)&g_past) AtomicString(":past"); 67 new (NotNull, (void*)&g_past) AtomicString(":past");
68 new (NotNull, (void*)&g_unresolved) AtomicString(":unresolved"); 68 new (NotNull, (void*)&g_unresolved) AtomicString(":unresolved");
69 } 69 }
70 70
71 } // namespace StyleChangeExtraData 71 } // namespace StyleChangeExtraData
72 72
73 } // namespace blink 73 } // namespace blink
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/dom/StyleChangeReason.h ('k') | third_party/WebKit/Source/core/dom/StyleElement.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698