| OLD | NEW |
| 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 130 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 141 DEFINE_STRING_MAPPING(PseudoFullScreen) | 141 DEFINE_STRING_MAPPING(PseudoFullScreen) |
| 142 DEFINE_STRING_MAPPING(PseudoFullScreenAncestor) | 142 DEFINE_STRING_MAPPING(PseudoFullScreenAncestor) |
| 143 DEFINE_STRING_MAPPING(PseudoInRange) | 143 DEFINE_STRING_MAPPING(PseudoInRange) |
| 144 DEFINE_STRING_MAPPING(PseudoOutOfRange) | 144 DEFINE_STRING_MAPPING(PseudoOutOfRange) |
| 145 DEFINE_STRING_MAPPING(PseudoWebKitCustomElement) | 145 DEFINE_STRING_MAPPING(PseudoWebKitCustomElement) |
| 146 DEFINE_STRING_MAPPING(PseudoBlinkInternalElement) | 146 DEFINE_STRING_MAPPING(PseudoBlinkInternalElement) |
| 147 DEFINE_STRING_MAPPING(PseudoCue) | 147 DEFINE_STRING_MAPPING(PseudoCue) |
| 148 DEFINE_STRING_MAPPING(PseudoFutureCue) | 148 DEFINE_STRING_MAPPING(PseudoFutureCue) |
| 149 DEFINE_STRING_MAPPING(PseudoPastCue) | 149 DEFINE_STRING_MAPPING(PseudoPastCue) |
| 150 DEFINE_STRING_MAPPING(PseudoUnresolved) | 150 DEFINE_STRING_MAPPING(PseudoUnresolved) |
| 151 DEFINE_STRING_MAPPING(PseudoDefined) |
| 151 DEFINE_STRING_MAPPING(PseudoContent) | 152 DEFINE_STRING_MAPPING(PseudoContent) |
| 152 DEFINE_STRING_MAPPING(PseudoHost) | 153 DEFINE_STRING_MAPPING(PseudoHost) |
| 153 DEFINE_STRING_MAPPING(PseudoHostContext) | 154 DEFINE_STRING_MAPPING(PseudoHostContext) |
| 154 DEFINE_STRING_MAPPING(PseudoShadow) | 155 DEFINE_STRING_MAPPING(PseudoShadow) |
| 155 DEFINE_STRING_MAPPING(PseudoSlotted) | 156 DEFINE_STRING_MAPPING(PseudoSlotted) |
| 156 DEFINE_STRING_MAPPING(PseudoSpatialNavigationFocus) | 157 DEFINE_STRING_MAPPING(PseudoSpatialNavigationFocus) |
| 157 DEFINE_STRING_MAPPING(PseudoListBox) | 158 DEFINE_STRING_MAPPING(PseudoListBox) |
| 158 DEFINE_STRING_MAPPING(PseudoHostHasAppearance) | 159 DEFINE_STRING_MAPPING(PseudoHostHasAppearance) |
| 159 #undef DEFINE_STRING_MAPPING | 160 #undef DEFINE_STRING_MAPPING |
| 160 } | 161 } |
| (...skipping 717 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 878 if (request.move()) | 879 if (request.move()) |
| 879 value->setBoolean("move", true); | 880 value->setBoolean("move", true); |
| 880 if (request.listBased()) | 881 if (request.listBased()) |
| 881 value->setBoolean("listBased", true); | 882 value->setBoolean("listBased", true); |
| 882 else if (Node* node = result.innerNode()) | 883 else if (Node* node = result.innerNode()) |
| 883 setNodeInfo(value.get(), node, "nodeId", "nodeName"); | 884 setNodeInfo(value.get(), node, "nodeId", "nodeName"); |
| 884 return value; | 885 return value; |
| 885 } | 886 } |
| 886 | 887 |
| 887 } // namespace blink | 888 } // namespace blink |
| OLD | NEW |