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

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

Issue 1233503003: Remove the :-webkit-full-screen-document pseudo class (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 5 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/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 "config.h" 5 #include "config.h"
6 #include "core/inspector/InspectorTraceEvents.h" 6 #include "core/inspector/InspectorTraceEvents.h"
7 7
8 #include "bindings/core/v8/ScriptCallStackFactory.h" 8 #include "bindings/core/v8/ScriptCallStackFactory.h"
9 #include "bindings/core/v8/ScriptSourceCode.h" 9 #include "bindings/core/v8/ScriptSourceCode.h"
10 #include "core/animation/Animation.h" 10 #include "core/animation/Animation.h"
(...skipping 118 matching lines...) Expand 10 before | Expand all | Expand 10 after
129 DEFINE_STRING_MAPPING(PseudoStart) 129 DEFINE_STRING_MAPPING(PseudoStart)
130 DEFINE_STRING_MAPPING(PseudoEnd) 130 DEFINE_STRING_MAPPING(PseudoEnd)
131 DEFINE_STRING_MAPPING(PseudoDoubleButton) 131 DEFINE_STRING_MAPPING(PseudoDoubleButton)
132 DEFINE_STRING_MAPPING(PseudoSingleButton) 132 DEFINE_STRING_MAPPING(PseudoSingleButton)
133 DEFINE_STRING_MAPPING(PseudoNoButton) 133 DEFINE_STRING_MAPPING(PseudoNoButton)
134 DEFINE_STRING_MAPPING(PseudoSelection) 134 DEFINE_STRING_MAPPING(PseudoSelection)
135 DEFINE_STRING_MAPPING(PseudoLeftPage) 135 DEFINE_STRING_MAPPING(PseudoLeftPage)
136 DEFINE_STRING_MAPPING(PseudoRightPage) 136 DEFINE_STRING_MAPPING(PseudoRightPage)
137 DEFINE_STRING_MAPPING(PseudoFirstPage) 137 DEFINE_STRING_MAPPING(PseudoFirstPage)
138 DEFINE_STRING_MAPPING(PseudoFullScreen) 138 DEFINE_STRING_MAPPING(PseudoFullScreen)
139 DEFINE_STRING_MAPPING(PseudoFullScreenDocument)
140 DEFINE_STRING_MAPPING(PseudoFullScreenAncestor) 139 DEFINE_STRING_MAPPING(PseudoFullScreenAncestor)
141 DEFINE_STRING_MAPPING(PseudoInRange) 140 DEFINE_STRING_MAPPING(PseudoInRange)
142 DEFINE_STRING_MAPPING(PseudoOutOfRange) 141 DEFINE_STRING_MAPPING(PseudoOutOfRange)
143 DEFINE_STRING_MAPPING(PseudoWebKitCustomElement) 142 DEFINE_STRING_MAPPING(PseudoWebKitCustomElement)
144 DEFINE_STRING_MAPPING(PseudoCue) 143 DEFINE_STRING_MAPPING(PseudoCue)
145 DEFINE_STRING_MAPPING(PseudoFutureCue) 144 DEFINE_STRING_MAPPING(PseudoFutureCue)
146 DEFINE_STRING_MAPPING(PseudoPastCue) 145 DEFINE_STRING_MAPPING(PseudoPastCue)
147 DEFINE_STRING_MAPPING(PseudoUnresolved) 146 DEFINE_STRING_MAPPING(PseudoUnresolved)
148 DEFINE_STRING_MAPPING(PseudoContent) 147 DEFINE_STRING_MAPPING(PseudoContent)
149 DEFINE_STRING_MAPPING(PseudoHost) 148 DEFINE_STRING_MAPPING(PseudoHost)
(...skipping 623 matching lines...) Expand 10 before | Expand all | Expand 10 after
773 if (request.move()) 772 if (request.move())
774 value->setBoolean("move", true); 773 value->setBoolean("move", true);
775 if (request.listBased()) 774 if (request.listBased())
776 value->setBoolean("listBased", true); 775 value->setBoolean("listBased", true);
777 else if (Node* node = result.innerNode()) 776 else if (Node* node = result.innerNode())
778 setNodeInfo(value.get(), node, "nodeId", "nodeName"); 777 setNodeInfo(value.get(), node, "nodeId", "nodeName");
779 return value; 778 return value;
780 } 779 }
781 780
782 } 781 }
OLDNEW
« no previous file with comments | « Source/core/frame/UseCounter.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698