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

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

Issue 2504883003: Loading: move *StyleSheetResource to core/loader/resource (Closed)
Patch Set: [rebase] Created 4 years 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/KeyframeEffectReadOnly.h" 10 #include "core/animation/KeyframeEffectReadOnly.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"
16 #include "core/frame/FrameView.h" 15 #include "core/frame/FrameView.h"
17 #include "core/frame/LocalFrame.h" 16 #include "core/frame/LocalFrame.h"
18 #include "core/html/HTMLFrameOwnerElement.h" 17 #include "core/html/HTMLFrameOwnerElement.h"
19 #include "core/inspector/IdentifiersFactory.h" 18 #include "core/inspector/IdentifiersFactory.h"
20 #include "core/layout/HitTestResult.h" 19 #include "core/layout/HitTestResult.h"
21 #include "core/layout/LayoutImage.h" 20 #include "core/layout/LayoutImage.h"
22 #include "core/layout/LayoutObject.h" 21 #include "core/layout/LayoutObject.h"
22 #include "core/loader/resource/CSSStyleSheetResource.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/WorkerGlobalScope.h"
26 #include "core/workers/WorkerThread.h" 26 #include "core/workers/WorkerThread.h"
27 #include "core/xmlhttprequest/XMLHttpRequest.h" 27 #include "core/xmlhttprequest/XMLHttpRequest.h"
28 #include "platform/InstanceCounters.h" 28 #include "platform/InstanceCounters.h"
29 #include "platform/graphics/GraphicsLayer.h" 29 #include "platform/graphics/GraphicsLayer.h"
30 #include "platform/network/ResourceLoadPriority.h" 30 #include "platform/network/ResourceLoadPriority.h"
31 #include "platform/network/ResourceRequest.h" 31 #include "platform/network/ResourceRequest.h"
32 #include "platform/network/ResourceResponse.h" 32 #include "platform/network/ResourceResponse.h"
(...skipping 1020 matching lines...) Expand 10 before | Expand all | Expand 10 after
1053 if (request.move()) 1053 if (request.move())
1054 value->setBoolean("move", true); 1054 value->setBoolean("move", true);
1055 if (request.listBased()) 1055 if (request.listBased())
1056 value->setBoolean("listBased", true); 1056 value->setBoolean("listBased", true);
1057 else if (Node* node = result.innerNode()) 1057 else if (Node* node = result.innerNode())
1058 setNodeInfo(value.get(), node, "nodeId", "nodeName"); 1058 setNodeInfo(value.get(), node, "nodeId", "nodeName");
1059 return value; 1059 return value;
1060 } 1060 }
1061 1061
1062 } // namespace blink 1062 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698