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

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

Issue 25447002: Move JSONValues.cpp/.h to Source/platform/ (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: 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 39 matching lines...) Expand 10 before | Expand all | Expand 10 after
50 #include "core/inspector/InstrumentingAgents.h" 50 #include "core/inspector/InstrumentingAgents.h"
51 #include "core/inspector/NetworkResourcesData.h" 51 #include "core/inspector/NetworkResourcesData.h"
52 #include "core/inspector/ScriptCallStack.h" 52 #include "core/inspector/ScriptCallStack.h"
53 #include "core/loader/DocumentLoader.h" 53 #include "core/loader/DocumentLoader.h"
54 #include "core/loader/DocumentThreadableLoader.h" 54 #include "core/loader/DocumentThreadableLoader.h"
55 #include "core/loader/FrameLoader.h" 55 #include "core/loader/FrameLoader.h"
56 #include "core/loader/ThreadableLoader.h" 56 #include "core/loader/ThreadableLoader.h"
57 #include "core/loader/ThreadableLoaderClient.h" 57 #include "core/loader/ThreadableLoaderClient.h"
58 #include "core/page/Frame.h" 58 #include "core/page/Frame.h"
59 #include "core/page/Page.h" 59 #include "core/page/Page.h"
60 #include "core/platform/JSONValues.h"
61 #include "core/platform/network/HTTPHeaderMap.h" 60 #include "core/platform/network/HTTPHeaderMap.h"
62 #include "core/platform/network/ResourceError.h" 61 #include "core/platform/network/ResourceError.h"
63 #include "core/platform/network/ResourceRequest.h" 62 #include "core/platform/network/ResourceRequest.h"
64 #include "core/platform/network/ResourceResponse.h" 63 #include "core/platform/network/ResourceResponse.h"
65 #include "core/xml/XMLHttpRequest.h" 64 #include "core/xml/XMLHttpRequest.h"
66 #include "modules/websockets/WebSocketFrame.h" 65 #include "modules/websockets/WebSocketFrame.h"
67 #include "modules/websockets/WebSocketHandshakeRequest.h" 66 #include "modules/websockets/WebSocketHandshakeRequest.h"
68 #include "modules/websockets/WebSocketHandshakeResponse.h" 67 #include "modules/websockets/WebSocketHandshakeResponse.h"
68 #include "platform/JSONValues.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 712 matching lines...) Expand 10 before | Expand all | Expand 10 after
791 , m_pageAgent(pageAgent) 791 , m_pageAgent(pageAgent)
792 , m_client(client) 792 , m_client(client)
793 , m_overlay(overlay) 793 , m_overlay(overlay)
794 , m_frontend(0) 794 , m_frontend(0)
795 , m_resourcesData(adoptPtr(new NetworkResourcesData())) 795 , m_resourcesData(adoptPtr(new NetworkResourcesData()))
796 , m_isRecalculatingStyle(false) 796 , m_isRecalculatingStyle(false)
797 { 797 {
798 } 798 }
799 799
800 } // namespace WebCore 800 } // namespace WebCore
OLDNEW
« no previous file with comments | « Source/core/inspector/InspectorPageAgent.cpp ('k') | Source/core/inspector/InspectorRuntimeAgent.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698