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

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

Issue 2772613002: [instrumentation] Rename InspectorInstrumentation into CoreProbes (Closed)
Patch Set: fix typo 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 /* 1 /*
2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org)
3 * (C) 1999 Antti Koivisto (koivisto@kde.org) 3 * (C) 1999 Antti Koivisto (koivisto@kde.org)
4 * (C) 2001 Peter Kelly (pmk@post.com) 4 * (C) 2001 Peter Kelly (pmk@post.com)
5 * (C) 2001 Dirk Mueller (mueller@kde.org) 5 * (C) 2001 Dirk Mueller (mueller@kde.org)
6 * (C) 2007 David Smith (catfish.man@gmail.com) 6 * (C) 2007 David Smith (catfish.man@gmail.com)
7 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2012, 2013 Apple Inc. 7 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2012, 2013 Apple Inc.
8 * All rights reserved. 8 * All rights reserved.
9 * (C) 2007 Eric Seidel (eric@webkit.org) 9 * (C) 2007 Eric Seidel (eric@webkit.org)
10 * 10 *
11 * This library is free software; you can redistribute it and/or 11 * This library is free software; you can redistribute it and/or
12 * modify it under the terms of the GNU Library General Public 12 * modify it under the terms of the GNU Library General Public
13 * License as published by the Free Software Foundation; either 13 * License as published by the Free Software Foundation; either
14 * version 2 of the License, or (at your option) any later version. 14 * version 2 of the License, or (at your option) any later version.
15 * 15 *
16 * This library is distributed in the hope that it will be useful, 16 * This library is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of 17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
19 * Library General Public License for more details. 19 * Library General Public License for more details.
20 * 20 *
21 * You should have received a copy of the GNU Library General Public License 21 * You should have received a copy of the GNU Library General Public License
22 * along with this library; see the file COPYING.LIB. If not, write to 22 * along with this library; see the file COPYING.LIB. If not, write to
23 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, 23 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
24 * Boston, MA 02110-1301, USA. 24 * Boston, MA 02110-1301, USA.
25 */ 25 */
26 26
27 #include "core/dom/Element.h" 27 #include "core/dom/Element.h"
28 28
29 #include <memory>
29 #include "bindings/core/v8/DOMDataStore.h" 30 #include "bindings/core/v8/DOMDataStore.h"
30 #include "bindings/core/v8/Dictionary.h" 31 #include "bindings/core/v8/Dictionary.h"
31 #include "bindings/core/v8/ExceptionMessages.h" 32 #include "bindings/core/v8/ExceptionMessages.h"
32 #include "bindings/core/v8/ExceptionState.h" 33 #include "bindings/core/v8/ExceptionState.h"
33 #include "bindings/core/v8/V8DOMActivityLogger.h" 34 #include "bindings/core/v8/V8DOMActivityLogger.h"
34 #include "bindings/core/v8/V8DOMWrapper.h" 35 #include "bindings/core/v8/V8DOMWrapper.h"
35 #include "bindings/core/v8/V8PerContextData.h" 36 #include "bindings/core/v8/V8PerContextData.h"
36 #include "core/CSSValueKeywords.h" 37 #include "core/CSSValueKeywords.h"
37 #include "core/SVGNames.h" 38 #include "core/SVGNames.h"
38 #include "core/XMLNames.h" 39 #include "core/XMLNames.h"
(...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after
109 #include "core/html/HTMLFormControlsCollection.h" 110 #include "core/html/HTMLFormControlsCollection.h"
110 #include "core/html/HTMLFrameElementBase.h" 111 #include "core/html/HTMLFrameElementBase.h"
111 #include "core/html/HTMLFrameOwnerElement.h" 112 #include "core/html/HTMLFrameOwnerElement.h"
112 #include "core/html/HTMLOptionsCollection.h" 113 #include "core/html/HTMLOptionsCollection.h"
113 #include "core/html/HTMLPlugInElement.h" 114 #include "core/html/HTMLPlugInElement.h"
114 #include "core/html/HTMLSlotElement.h" 115 #include "core/html/HTMLSlotElement.h"
115 #include "core/html/HTMLTableRowsCollection.h" 116 #include "core/html/HTMLTableRowsCollection.h"
116 #include "core/html/HTMLTemplateElement.h" 117 #include "core/html/HTMLTemplateElement.h"
117 #include "core/html/parser/HTMLParserIdioms.h" 118 #include "core/html/parser/HTMLParserIdioms.h"
118 #include "core/input/EventHandler.h" 119 #include "core/input/EventHandler.h"
119 #include "core/inspector/InspectorInstrumentation.h"
120 #include "core/layout/LayoutTextFragment.h" 120 #include "core/layout/LayoutTextFragment.h"
121 #include "core/layout/api/LayoutBoxItem.h" 121 #include "core/layout/api/LayoutBoxItem.h"
122 #include "core/layout/api/LayoutViewItem.h" 122 #include "core/layout/api/LayoutViewItem.h"
123 #include "core/loader/DocumentLoader.h" 123 #include "core/loader/DocumentLoader.h"
124 #include "core/page/ChromeClient.h" 124 #include "core/page/ChromeClient.h"
125 #include "core/page/FocusController.h" 125 #include "core/page/FocusController.h"
126 #include "core/page/Page.h" 126 #include "core/page/Page.h"
127 #include "core/page/PointerLockController.h" 127 #include "core/page/PointerLockController.h"
128 #include "core/page/SpatialNavigation.h" 128 #include "core/page/SpatialNavigation.h"
129 #include "core/page/scrolling/RootScrollerController.h" 129 #include "core/page/scrolling/RootScrollerController.h"
130 #include "core/page/scrolling/ScrollCustomizationCallbacks.h" 130 #include "core/page/scrolling/ScrollCustomizationCallbacks.h"
131 #include "core/page/scrolling/ScrollState.h" 131 #include "core/page/scrolling/ScrollState.h"
132 #include "core/page/scrolling/ScrollStateCallback.h" 132 #include "core/page/scrolling/ScrollStateCallback.h"
133 #include "core/page/scrolling/TopDocumentRootScrollerController.h" 133 #include "core/page/scrolling/TopDocumentRootScrollerController.h"
134 #include "core/paint/PaintLayer.h" 134 #include "core/paint/PaintLayer.h"
135 #include "core/probe/CoreProbes.h"
135 #include "core/svg/SVGAElement.h" 136 #include "core/svg/SVGAElement.h"
136 #include "core/svg/SVGElement.h" 137 #include "core/svg/SVGElement.h"
137 #include "core/svg/SVGTreeScopeResources.h" 138 #include "core/svg/SVGTreeScopeResources.h"
138 #include "platform/EventDispatchForbiddenScope.h" 139 #include "platform/EventDispatchForbiddenScope.h"
139 #include "platform/RuntimeEnabledFeatures.h" 140 #include "platform/RuntimeEnabledFeatures.h"
140 #include "platform/graphics/CompositorMutableProperties.h" 141 #include "platform/graphics/CompositorMutableProperties.h"
141 #include "platform/graphics/CompositorMutation.h" 142 #include "platform/graphics/CompositorMutation.h"
142 #include "platform/scroll/ScrollableArea.h" 143 #include "platform/scroll/ScrollableArea.h"
143 #include "wtf/BitVector.h" 144 #include "wtf/BitVector.h"
144 #include "wtf/HashFunctions.h" 145 #include "wtf/HashFunctions.h"
145 #include "wtf/text/CString.h" 146 #include "wtf/text/CString.h"
146 #include "wtf/text/StringBuilder.h" 147 #include "wtf/text/StringBuilder.h"
147 #include "wtf/text/TextPosition.h" 148 #include "wtf/text/TextPosition.h"
148 #include <memory>
149 149
150 namespace blink { 150 namespace blink {
151 151
152 namespace { 152 namespace {
153 153
154 // We need to retain the scroll customization callbacks until the element 154 // We need to retain the scroll customization callbacks until the element
155 // they're associated with is destroyed. It would be simplest if the callbacks 155 // they're associated with is destroyed. It would be simplest if the callbacks
156 // could be stored in ElementRareData, but we can't afford the space increase. 156 // could be stored in ElementRareData, but we can't afford the space increase.
157 // Instead, keep the scroll customization callbacks here. The other option would 157 // Instead, keep the scroll customization callbacks here. The other option would
158 // be to store these callbacks on the Page or document, but that necessitates a 158 // be to store these callbacks on the Page or document, but that necessitates a
(...skipping 4069 matching lines...) Expand 10 before | Expand all | Expand 10 after
4228 } 4228 }
4229 4229
4230 DEFINE_TRACE_WRAPPERS(Element) { 4230 DEFINE_TRACE_WRAPPERS(Element) {
4231 if (hasRareData()) { 4231 if (hasRareData()) {
4232 visitor->traceWrappers(elementRareData()); 4232 visitor->traceWrappers(elementRareData());
4233 } 4233 }
4234 ContainerNode::traceWrappers(visitor); 4234 ContainerNode::traceWrappers(visitor);
4235 } 4235 }
4236 4236
4237 } // namespace blink 4237 } // namespace blink
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/dom/Document.cpp ('k') | third_party/WebKit/Source/core/dom/ExecutionContext.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698