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

Side by Side Diff: Source/core/inspector/InspectorResourceAgent.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
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 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
49 #include "core/inspector/InstrumentingAgents.h" 49 #include "core/inspector/InstrumentingAgents.h"
50 #include "core/inspector/NetworkResourcesData.h" 50 #include "core/inspector/NetworkResourcesData.h"
51 #include "core/inspector/ScriptAsyncCallStack.h" 51 #include "core/inspector/ScriptAsyncCallStack.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/Page.h" 58 #include "core/page/Page.h"
59 #include "core/xml/XMLHttpRequest.h" 59 #include "core/xmlhttprequest/XMLHttpRequest.h"
60 #include "platform/JSONValues.h" 60 #include "platform/JSONValues.h"
61 #include "platform/network/HTTPHeaderMap.h" 61 #include "platform/network/HTTPHeaderMap.h"
62 #include "platform/network/ResourceError.h" 62 #include "platform/network/ResourceError.h"
63 #include "platform/network/ResourceRequest.h" 63 #include "platform/network/ResourceRequest.h"
64 #include "platform/network/ResourceResponse.h" 64 #include "platform/network/ResourceResponse.h"
65 #include "platform/network/WebSocketHandshakeRequest.h" 65 #include "platform/network/WebSocketHandshakeRequest.h"
66 #include "platform/network/WebSocketHandshakeResponse.h" 66 #include "platform/network/WebSocketHandshakeResponse.h"
67 #include "platform/weborigin/KURL.h" 67 #include "platform/weborigin/KURL.h"
68 #include "public/platform/WebURLRequest.h" 68 #include "public/platform/WebURLRequest.h"
69 #include "wtf/CurrentTime.h" 69 #include "wtf/CurrentTime.h"
(...skipping 817 matching lines...) Expand 10 before | Expand all | Expand 10 after
887 , m_removeFinishedReplayXHRTimer(this, &InspectorResourceAgent::removeFinish edReplayXHRFired) 887 , m_removeFinishedReplayXHRTimer(this, &InspectorResourceAgent::removeFinish edReplayXHRFired)
888 { 888 {
889 } 889 }
890 890
891 bool InspectorResourceAgent::shouldForceCORSPreflight() 891 bool InspectorResourceAgent::shouldForceCORSPreflight()
892 { 892 {
893 return m_state->getBoolean(ResourceAgentState::cacheDisabled); 893 return m_state->getBoolean(ResourceAgentState::cacheDisabled);
894 } 894 }
895 895
896 } // namespace blink 896 } // namespace blink
OLDNEW
« no previous file with comments | « Source/core/inspector/InspectorConsoleAgent.cpp ('k') | Source/core/inspector/InspectorTimelineAgent.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698