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

Side by Side Diff: third_party/WebKit/Source/core/inspector/InspectorTraceEvents.cpp

Issue 1523843004: Add support for new CSS ::slotted() pseudo element (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase / fix comments for tests (FYI) Created 4 years, 11 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
« no previous file with comments | « third_party/WebKit/Source/core/frame/UseCounter.h ('k') | no next file » | 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 "core/inspector/InspectorTraceEvents.h" 5 #include "core/inspector/InspectorTraceEvents.h"
6 6
7 #include "bindings/core/v8/ScriptCallStackFactory.h" 7 #include "bindings/core/v8/ScriptCallStackFactory.h"
8 #include "bindings/core/v8/ScriptSourceCode.h" 8 #include "bindings/core/v8/ScriptSourceCode.h"
9 #include "core/animation/Animation.h" 9 #include "core/animation/Animation.h"
10 #include "core/animation/KeyframeEffect.h" 10 #include "core/animation/KeyframeEffect.h"
(...skipping 131 matching lines...) Expand 10 before | Expand all | Expand 10 after
142 DEFINE_STRING_MAPPING(PseudoOutOfRange) 142 DEFINE_STRING_MAPPING(PseudoOutOfRange)
143 DEFINE_STRING_MAPPING(PseudoWebKitCustomElement) 143 DEFINE_STRING_MAPPING(PseudoWebKitCustomElement)
144 DEFINE_STRING_MAPPING(PseudoCue) 144 DEFINE_STRING_MAPPING(PseudoCue)
145 DEFINE_STRING_MAPPING(PseudoFutureCue) 145 DEFINE_STRING_MAPPING(PseudoFutureCue)
146 DEFINE_STRING_MAPPING(PseudoPastCue) 146 DEFINE_STRING_MAPPING(PseudoPastCue)
147 DEFINE_STRING_MAPPING(PseudoUnresolved) 147 DEFINE_STRING_MAPPING(PseudoUnresolved)
148 DEFINE_STRING_MAPPING(PseudoContent) 148 DEFINE_STRING_MAPPING(PseudoContent)
149 DEFINE_STRING_MAPPING(PseudoHost) 149 DEFINE_STRING_MAPPING(PseudoHost)
150 DEFINE_STRING_MAPPING(PseudoHostContext) 150 DEFINE_STRING_MAPPING(PseudoHostContext)
151 DEFINE_STRING_MAPPING(PseudoShadow) 151 DEFINE_STRING_MAPPING(PseudoShadow)
152 DEFINE_STRING_MAPPING(PseudoSlotted)
152 DEFINE_STRING_MAPPING(PseudoSpatialNavigationFocus) 153 DEFINE_STRING_MAPPING(PseudoSpatialNavigationFocus)
153 DEFINE_STRING_MAPPING(PseudoListBox) 154 DEFINE_STRING_MAPPING(PseudoListBox)
154 #undef DEFINE_STRING_MAPPING 155 #undef DEFINE_STRING_MAPPING
155 } 156 }
156 157
157 ASSERT_NOT_REACHED(); 158 ASSERT_NOT_REACHED();
158 return ""; 159 return "";
159 } 160 }
160 161
161 } 162 }
(...skipping 670 matching lines...) Expand 10 before | Expand all | Expand 10 after
832 if (request.move()) 833 if (request.move())
833 value->setBoolean("move", true); 834 value->setBoolean("move", true);
834 if (request.listBased()) 835 if (request.listBased())
835 value->setBoolean("listBased", true); 836 value->setBoolean("listBased", true);
836 else if (Node* node = result.innerNode()) 837 else if (Node* node = result.innerNode())
837 setNodeInfo(value.get(), node, "nodeId", "nodeName"); 838 setNodeInfo(value.get(), node, "nodeId", "nodeName");
838 return value; 839 return value;
839 } 840 }
840 841
841 } 842 }
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/frame/UseCounter.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698