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

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

Issue 29123004: Move core/platform/network to platform/network (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: One more file Created 7 years, 2 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 | Annotate | Revision Log
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2011 Google Inc. All rights reserved. 2 * Copyright (C) 2011 Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * * Redistributions of source code must retain the above copyright 8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above 10 * * Redistributions in binary form must reproduce the above
(...skipping 24 matching lines...) Expand all
35 #include "InspectorFrontend.h" 35 #include "InspectorFrontend.h"
36 #include "bindings/v8/ExceptionStatePlaceholder.h" 36 #include "bindings/v8/ExceptionStatePlaceholder.h"
37 #include "bindings/v8/ScriptCallStackFactory.h" 37 #include "bindings/v8/ScriptCallStackFactory.h"
38 #include "core/dom/Document.h" 38 #include "core/dom/Document.h"
39 #include "core/dom/ScriptableDocumentParser.h" 39 #include "core/dom/ScriptableDocumentParser.h"
40 #include "core/fetch/FetchInitiatorInfo.h" 40 #include "core/fetch/FetchInitiatorInfo.h"
41 #include "core/fetch/MemoryCache.h" 41 #include "core/fetch/MemoryCache.h"
42 #include "core/fetch/Resource.h" 42 #include "core/fetch/Resource.h"
43 #include "core/fetch/ResourceFetcher.h" 43 #include "core/fetch/ResourceFetcher.h"
44 #include "core/fetch/ResourceLoader.h" 44 #include "core/fetch/ResourceLoader.h"
45 #include "core/frame/Frame.h"
45 #include "core/inspector/IdentifiersFactory.h" 46 #include "core/inspector/IdentifiersFactory.h"
46 #include "core/inspector/InspectorClient.h" 47 #include "core/inspector/InspectorClient.h"
47 #include "core/inspector/InspectorOverlay.h" 48 #include "core/inspector/InspectorOverlay.h"
48 #include "core/inspector/InspectorPageAgent.h" 49 #include "core/inspector/InspectorPageAgent.h"
49 #include "core/inspector/InspectorState.h" 50 #include "core/inspector/InspectorState.h"
50 #include "core/inspector/InstrumentingAgents.h" 51 #include "core/inspector/InstrumentingAgents.h"
51 #include "core/inspector/NetworkResourcesData.h" 52 #include "core/inspector/NetworkResourcesData.h"
52 #include "core/inspector/ScriptCallStack.h" 53 #include "core/inspector/ScriptCallStack.h"
53 #include "core/loader/DocumentLoader.h" 54 #include "core/loader/DocumentLoader.h"
54 #include "core/loader/DocumentThreadableLoader.h" 55 #include "core/loader/DocumentThreadableLoader.h"
55 #include "core/loader/FrameLoader.h" 56 #include "core/loader/FrameLoader.h"
56 #include "core/loader/ThreadableLoader.h" 57 #include "core/loader/ThreadableLoader.h"
57 #include "core/loader/ThreadableLoaderClient.h" 58 #include "core/loader/ThreadableLoaderClient.h"
58 #include "core/frame/Frame.h"
59 #include "core/page/Page.h" 59 #include "core/page/Page.h"
60 #include "core/platform/network/ResourceRequest.h"
61 #include "core/platform/network/ResourceResponse.h"
62 #include "core/xml/XMLHttpRequest.h" 60 #include "core/xml/XMLHttpRequest.h"
63 #include "modules/websockets/WebSocketFrame.h" 61 #include "modules/websockets/WebSocketFrame.h"
64 #include "modules/websockets/WebSocketHandshakeRequest.h" 62 #include "modules/websockets/WebSocketHandshakeRequest.h"
65 #include "modules/websockets/WebSocketHandshakeResponse.h" 63 #include "modules/websockets/WebSocketHandshakeResponse.h"
66 #include "platform/JSONValues.h" 64 #include "platform/JSONValues.h"
67 #include "platform/network/HTTPHeaderMap.h" 65 #include "platform/network/HTTPHeaderMap.h"
68 #include "platform/network/ResourceError.h" 66 #include "platform/network/ResourceError.h"
67 #include "platform/network/ResourceRequest.h"
68 #include "platform/network/ResourceResponse.h"
69 #include "weborigin/KURL.h" 69 #include "weborigin/KURL.h"
70 #include "wtf/CurrentTime.h" 70 #include "wtf/CurrentTime.h"
71 #include "wtf/RefPtr.h" 71 #include "wtf/RefPtr.h"
72 72
73 typedef WebCore::InspectorBackendDispatcher::NetworkCommandHandler::LoadResource ForFrontendCallback LoadResourceForFrontendCallback; 73 typedef WebCore::InspectorBackendDispatcher::NetworkCommandHandler::LoadResource ForFrontendCallback LoadResourceForFrontendCallback;
74 74
75 namespace WebCore { 75 namespace WebCore {
76 76
77 namespace ResourceAgentState { 77 namespace ResourceAgentState {
78 static const char resourceAgentEnabled[] = "resourceAgentEnabled"; 78 static const char resourceAgentEnabled[] = "resourceAgentEnabled";
(...skipping 713 matching lines...) Expand 10 before | Expand all | Expand 10 after
792 , m_pageAgent(pageAgent) 792 , m_pageAgent(pageAgent)
793 , m_client(client) 793 , m_client(client)
794 , m_overlay(overlay) 794 , m_overlay(overlay)
795 , m_frontend(0) 795 , m_frontend(0)
796 , m_resourcesData(adoptPtr(new NetworkResourcesData())) 796 , m_resourcesData(adoptPtr(new NetworkResourcesData()))
797 , m_isRecalculatingStyle(false) 797 , m_isRecalculatingStyle(false)
798 { 798 {
799 } 799 }
800 800
801 } // namespace WebCore 801 } // namespace WebCore
OLDNEW
« no previous file with comments | « Source/core/inspector/InspectorInstrumentation.h ('k') | Source/core/inspector/InspectorTimelineAgent.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698