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

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

Issue 2116113002: [worklets] Make WorkerThread handle both Worker and Worklet global scopes. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase again Created 4 years, 4 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
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/inspector/WorkerThreadDebugger.cpp » ('j') | 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 "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"
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/inspector/InstanceCounters.h"
20 #include "core/layout/HitTestResult.h" 20 #include "core/layout/HitTestResult.h"
21 #include "core/layout/LayoutImage.h" 21 #include "core/layout/LayoutImage.h"
22 #include "core/layout/LayoutObject.h" 22 #include "core/layout/LayoutObject.h"
23 #include "core/page/Page.h" 23 #include "core/page/Page.h"
24 #include "core/paint/PaintLayer.h" 24 #include "core/paint/PaintLayer.h"
25 #include "core/workers/WorkerGlobalScope.h"
25 #include "core/workers/WorkerThread.h" 26 #include "core/workers/WorkerThread.h"
26 #include "core/xmlhttprequest/XMLHttpRequest.h" 27 #include "core/xmlhttprequest/XMLHttpRequest.h"
27 #include "platform/TracedValue.h" 28 #include "platform/TracedValue.h"
28 #include "platform/graphics/GraphicsLayer.h" 29 #include "platform/graphics/GraphicsLayer.h"
29 #include "platform/network/ResourceLoadPriority.h" 30 #include "platform/network/ResourceLoadPriority.h"
30 #include "platform/network/ResourceRequest.h" 31 #include "platform/network/ResourceRequest.h"
31 #include "platform/network/ResourceResponse.h" 32 #include "platform/network/ResourceResponse.h"
32 #include "platform/v8_inspector/V8StringUtil.h" 33 #include "platform/v8_inspector/V8StringUtil.h"
33 #include "platform/weborigin/KURL.h" 34 #include "platform/weborigin/KURL.h"
34 #include "wtf/Vector.h" 35 #include "wtf/Vector.h"
(...skipping 835 matching lines...) Expand 10 before | Expand all | Expand 10 after
870 if (request.move()) 871 if (request.move())
871 value->setBoolean("move", true); 872 value->setBoolean("move", true);
872 if (request.listBased()) 873 if (request.listBased())
873 value->setBoolean("listBased", true); 874 value->setBoolean("listBased", true);
874 else if (Node* node = result.innerNode()) 875 else if (Node* node = result.innerNode())
875 setNodeInfo(value.get(), node, "nodeId", "nodeName"); 876 setNodeInfo(value.get(), node, "nodeId", "nodeName");
876 return value; 877 return value;
877 } 878 }
878 879
879 } // namespace blink 880 } // namespace blink
OLDNEW
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/inspector/WorkerThreadDebugger.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698