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

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

Issue 666153003: Move XMLHttpRequest related files to core/xmlhttprequest. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: rebase Created 6 years, 1 month 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 | « Source/core/inspector/InspectorTimelineAgent.cpp ('k') | Source/core/xml/XMLHttpRequest.h » ('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 "config.h" 5 #include "config.h"
6 #include "core/inspector/InspectorTraceEvents.h" 6 #include "core/inspector/InspectorTraceEvents.h"
7 7
8 #include "bindings/core/v8/ScriptCallStackFactory.h" 8 #include "bindings/core/v8/ScriptCallStackFactory.h"
9 #include "bindings/core/v8/ScriptGCEvent.h" 9 #include "bindings/core/v8/ScriptGCEvent.h"
10 #include "bindings/core/v8/ScriptSourceCode.h" 10 #include "bindings/core/v8/ScriptSourceCode.h"
11 #include "core/css/invalidation/DescendantInvalidationSet.h" 11 #include "core/css/invalidation/DescendantInvalidationSet.h"
12 #include "core/dom/StyleChangeReason.h" 12 #include "core/dom/StyleChangeReason.h"
13 #include "core/events/Event.h" 13 #include "core/events/Event.h"
14 #include "core/frame/FrameView.h" 14 #include "core/frame/FrameView.h"
15 #include "core/frame/LocalFrame.h" 15 #include "core/frame/LocalFrame.h"
16 #include "core/inspector/IdentifiersFactory.h" 16 #include "core/inspector/IdentifiersFactory.h"
17 #include "core/inspector/InspectorNodeIds.h" 17 #include "core/inspector/InspectorNodeIds.h"
18 #include "core/inspector/ScriptCallStack.h" 18 #include "core/inspector/ScriptCallStack.h"
19 #include "core/page/Page.h" 19 #include "core/page/Page.h"
20 #include "core/rendering/RenderImage.h" 20 #include "core/rendering/RenderImage.h"
21 #include "core/rendering/RenderLayer.h" 21 #include "core/rendering/RenderLayer.h"
22 #include "core/rendering/RenderObject.h" 22 #include "core/rendering/RenderObject.h"
23 #include "core/workers/WorkerThread.h" 23 #include "core/workers/WorkerThread.h"
24 #include "core/xml/XMLHttpRequest.h" 24 #include "core/xmlhttprequest/XMLHttpRequest.h"
25 #include "platform/JSONValues.h" 25 #include "platform/JSONValues.h"
26 #include "platform/TracedValue.h" 26 #include "platform/TracedValue.h"
27 #include "platform/graphics/GraphicsLayer.h" 27 #include "platform/graphics/GraphicsLayer.h"
28 #include "platform/network/ResourceRequest.h" 28 #include "platform/network/ResourceRequest.h"
29 #include "platform/network/ResourceResponse.h" 29 #include "platform/network/ResourceResponse.h"
30 #include "platform/weborigin/KURL.h" 30 #include "platform/weborigin/KURL.h"
31 #include "wtf/Vector.h" 31 #include "wtf/Vector.h"
32 #include <inttypes.h> 32 #include <inttypes.h>
33 33
34 namespace blink { 34 namespace blink {
(...skipping 571 matching lines...) Expand 10 before | Expand all | Expand 10 after
606 606
607 PassRefPtr<TraceEvent::ConvertableToTraceFormat> InspectorTracingSessionIdForWor kerEvent::data(const String& sessionId, WorkerThread* workerThread) 607 PassRefPtr<TraceEvent::ConvertableToTraceFormat> InspectorTracingSessionIdForWor kerEvent::data(const String& sessionId, WorkerThread* workerThread)
608 { 608 {
609 RefPtr<TracedValue> value = TracedValue::create(); 609 RefPtr<TracedValue> value = TracedValue::create();
610 value->setString("sessionId", sessionId); 610 value->setString("sessionId", sessionId);
611 value->setDouble("workerThreadId", workerThread->platformThreadId()); 611 value->setDouble("workerThreadId", workerThread->platformThreadId());
612 return value.release(); 612 return value.release();
613 } 613 }
614 614
615 } 615 }
OLDNEW
« no previous file with comments | « Source/core/inspector/InspectorTimelineAgent.cpp ('k') | Source/core/xml/XMLHttpRequest.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698