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

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

Issue 2202493002: NOT FOR REVIEW: Fullscreen WIP (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 4 years, 1 month 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/inspector/InspectorTraceEvents.h" 5 #include "core/inspector/InspectorTraceEvents.h"
6 6
7 #include "bindings/core/v8/ScriptSourceCode.h" 7 #include "bindings/core/v8/ScriptSourceCode.h"
8 #include "bindings/core/v8/SourceLocation.h" 8 #include "bindings/core/v8/SourceLocation.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 125 matching lines...) Expand 10 before | Expand all | Expand 10 after
136 DEFINE_STRING_MAPPING(PseudoStart) 136 DEFINE_STRING_MAPPING(PseudoStart)
137 DEFINE_STRING_MAPPING(PseudoEnd) 137 DEFINE_STRING_MAPPING(PseudoEnd)
138 DEFINE_STRING_MAPPING(PseudoDoubleButton) 138 DEFINE_STRING_MAPPING(PseudoDoubleButton)
139 DEFINE_STRING_MAPPING(PseudoSingleButton) 139 DEFINE_STRING_MAPPING(PseudoSingleButton)
140 DEFINE_STRING_MAPPING(PseudoNoButton) 140 DEFINE_STRING_MAPPING(PseudoNoButton)
141 DEFINE_STRING_MAPPING(PseudoSelection) 141 DEFINE_STRING_MAPPING(PseudoSelection)
142 DEFINE_STRING_MAPPING(PseudoLeftPage) 142 DEFINE_STRING_MAPPING(PseudoLeftPage)
143 DEFINE_STRING_MAPPING(PseudoRightPage) 143 DEFINE_STRING_MAPPING(PseudoRightPage)
144 DEFINE_STRING_MAPPING(PseudoFirstPage) 144 DEFINE_STRING_MAPPING(PseudoFirstPage)
145 DEFINE_STRING_MAPPING(PseudoFullScreen) 145 DEFINE_STRING_MAPPING(PseudoFullScreen)
146 DEFINE_STRING_MAPPING(PseudoFullScreenAncestor)
147 DEFINE_STRING_MAPPING(PseudoInRange) 146 DEFINE_STRING_MAPPING(PseudoInRange)
148 DEFINE_STRING_MAPPING(PseudoOutOfRange) 147 DEFINE_STRING_MAPPING(PseudoOutOfRange)
149 DEFINE_STRING_MAPPING(PseudoWebKitCustomElement) 148 DEFINE_STRING_MAPPING(PseudoWebKitCustomElement)
150 DEFINE_STRING_MAPPING(PseudoBlinkInternalElement) 149 DEFINE_STRING_MAPPING(PseudoBlinkInternalElement)
151 DEFINE_STRING_MAPPING(PseudoCue) 150 DEFINE_STRING_MAPPING(PseudoCue)
152 DEFINE_STRING_MAPPING(PseudoFutureCue) 151 DEFINE_STRING_MAPPING(PseudoFutureCue)
153 DEFINE_STRING_MAPPING(PseudoPastCue) 152 DEFINE_STRING_MAPPING(PseudoPastCue)
154 DEFINE_STRING_MAPPING(PseudoUnresolved) 153 DEFINE_STRING_MAPPING(PseudoUnresolved)
155 DEFINE_STRING_MAPPING(PseudoDefined) 154 DEFINE_STRING_MAPPING(PseudoDefined)
156 DEFINE_STRING_MAPPING(PseudoContent) 155 DEFINE_STRING_MAPPING(PseudoContent)
(...skipping 824 matching lines...) Expand 10 before | Expand all | Expand 10 after
981 if (request.move()) 980 if (request.move())
982 value->setBoolean("move", true); 981 value->setBoolean("move", true);
983 if (request.listBased()) 982 if (request.listBased())
984 value->setBoolean("listBased", true); 983 value->setBoolean("listBased", true);
985 else if (Node* node = result.innerNode()) 984 else if (Node* node = result.innerNode())
986 setNodeInfo(value.get(), node, "nodeId", "nodeName"); 985 setNodeInfo(value.get(), node, "nodeId", "nodeName");
987 return value; 986 return value;
988 } 987 }
989 988
990 } // namespace blink 989 } // namespace blink
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/html/HTMLMediaElement.cpp ('k') | third_party/WebKit/Source/core/layout/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698