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

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

Issue 1746673002: Node.h #include parsimony. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: remove unrelated change Created 4 years, 9 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 // 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/ScriptCallStack.h" 7 #include "bindings/core/v8/ScriptCallStack.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"
11 #include "core/css/invalidation/InvalidationSet.h" 11 #include "core/css/invalidation/InvalidationSet.h"
12 #include "core/dom/DOMNodeIds.h" 12 #include "core/dom/DOMNodeIds.h"
13 #include "core/dom/StyleChangeReason.h" 13 #include "core/dom/StyleChangeReason.h"
14 #include "core/events/Event.h" 14 #include "core/events/Event.h"
15 #include "core/fetch/CSSStyleSheetResource.h" 15 #include "core/fetch/CSSStyleSheetResource.h"
16 #include "core/frame/FrameView.h" 16 #include "core/frame/FrameView.h"
17 #include "core/frame/LocalFrame.h" 17 #include "core/frame/LocalFrame.h"
18 #include "core/inspector/IdentifiersFactory.h" 18 #include "core/inspector/IdentifiersFactory.h"
19 #include "core/inspector/InstanceCounters.h"
19 #include "core/layout/HitTestResult.h" 20 #include "core/layout/HitTestResult.h"
20 #include "core/layout/LayoutImage.h" 21 #include "core/layout/LayoutImage.h"
21 #include "core/layout/LayoutObject.h" 22 #include "core/layout/LayoutObject.h"
22 #include "core/page/Page.h" 23 #include "core/page/Page.h"
23 #include "core/paint/PaintLayer.h" 24 #include "core/paint/PaintLayer.h"
24 #include "core/workers/WorkerThread.h" 25 #include "core/workers/WorkerThread.h"
25 #include "core/xmlhttprequest/XMLHttpRequest.h" 26 #include "core/xmlhttprequest/XMLHttpRequest.h"
26 #include "platform/TracedValue.h" 27 #include "platform/TracedValue.h"
27 #include "platform/graphics/GraphicsLayer.h" 28 #include "platform/graphics/GraphicsLayer.h"
28 #include "platform/network/ResourceRequest.h" 29 #include "platform/network/ResourceRequest.h"
(...skipping 804 matching lines...) Expand 10 before | Expand all | Expand 10 after
833 if (request.move()) 834 if (request.move())
834 value->setBoolean("move", true); 835 value->setBoolean("move", true);
835 if (request.listBased()) 836 if (request.listBased())
836 value->setBoolean("listBased", true); 837 value->setBoolean("listBased", true);
837 else if (Node* node = result.innerNode()) 838 else if (Node* node = result.innerNode())
838 setNodeInfo(value.get(), node, "nodeId", "nodeName"); 839 setNodeInfo(value.get(), node, "nodeId", "nodeName");
839 return value.release(); 840 return value.release();
840 } 841 }
841 842
842 } // namespace blink 843 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698