| OLD | NEW |
| 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 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 53 #include "core/inspector/InspectorInstrumentation.h" | 53 #include "core/inspector/InspectorInstrumentation.h" |
| 54 #include "core/inspector/NetworkResourcesData.h" | 54 #include "core/inspector/NetworkResourcesData.h" |
| 55 #include "core/loader/DocumentLoader.h" | 55 #include "core/loader/DocumentLoader.h" |
| 56 #include "core/loader/FrameLoader.h" | 56 #include "core/loader/FrameLoader.h" |
| 57 #include "core/loader/MixedContentChecker.h" | 57 #include "core/loader/MixedContentChecker.h" |
| 58 #include "core/loader/ThreadableLoaderClient.h" | 58 #include "core/loader/ThreadableLoaderClient.h" |
| 59 #include "core/page/NetworkStateNotifier.h" | 59 #include "core/page/NetworkStateNotifier.h" |
| 60 #include "core/page/Page.h" | 60 #include "core/page/Page.h" |
| 61 #include "core/xmlhttprequest/XMLHttpRequest.h" | 61 #include "core/xmlhttprequest/XMLHttpRequest.h" |
| 62 #include "platform/blob/BlobData.h" | 62 #include "platform/blob/BlobData.h" |
| 63 #include "platform/inspector_protocol/Values.h" | |
| 64 #include "platform/network/HTTPHeaderMap.h" | 63 #include "platform/network/HTTPHeaderMap.h" |
| 65 #include "platform/network/ResourceError.h" | 64 #include "platform/network/ResourceError.h" |
| 66 #include "platform/network/ResourceLoadTiming.h" | 65 #include "platform/network/ResourceLoadTiming.h" |
| 67 #include "platform/network/ResourceRequest.h" | 66 #include "platform/network/ResourceRequest.h" |
| 68 #include "platform/network/ResourceResponse.h" | 67 #include "platform/network/ResourceResponse.h" |
| 69 #include "platform/network/WebSocketHandshakeRequest.h" | 68 #include "platform/network/WebSocketHandshakeRequest.h" |
| 70 #include "platform/network/WebSocketHandshakeResponse.h" | 69 #include "platform/network/WebSocketHandshakeResponse.h" |
| 71 #include "platform/weborigin/KURL.h" | 70 #include "platform/weborigin/KURL.h" |
| 72 #include "public/platform/WebCachePolicy.h" | 71 #include "public/platform/WebCachePolicy.h" |
| 73 #include "public/platform/WebMixedContent.h" | 72 #include "public/platform/WebMixedContent.h" |
| (...skipping 1107 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1181 , m_removeFinishedReplayXHRTimer(this, &InspectorNetworkAgent::removeFinishe
dReplayXHRFired) | 1180 , m_removeFinishedReplayXHRTimer(this, &InspectorNetworkAgent::removeFinishe
dReplayXHRFired) |
| 1182 { | 1181 { |
| 1183 } | 1182 } |
| 1184 | 1183 |
| 1185 bool InspectorNetworkAgent::shouldForceCORSPreflight() | 1184 bool InspectorNetworkAgent::shouldForceCORSPreflight() |
| 1186 { | 1185 { |
| 1187 return m_state->booleanProperty(NetworkAgentState::cacheDisabled, false); | 1186 return m_state->booleanProperty(NetworkAgentState::cacheDisabled, false); |
| 1188 } | 1187 } |
| 1189 | 1188 |
| 1190 } // namespace blink | 1189 } // namespace blink |
| OLD | NEW |