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

Side by Side Diff: third_party/WebKit/Source/core/inspector/InspectorNetworkAgent.cpp

Issue 2238423002: [DevTools] Generate all files in inspector_protocol. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@2240663003
Patch Set: Created 4 years, 4 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
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 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
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
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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698