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 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
43 #include "core/fetch/ResourceLoader.h" | 43 #include "core/fetch/ResourceLoader.h" |
44 #include "core/fetch/UniqueIdentifier.h" | 44 #include "core/fetch/UniqueIdentifier.h" |
45 #include "core/fileapi/FileReaderLoader.h" | 45 #include "core/fileapi/FileReaderLoader.h" |
46 #include "core/fileapi/FileReaderLoaderClient.h" | 46 #include "core/fileapi/FileReaderLoaderClient.h" |
47 #include "core/frame/FrameHost.h" | 47 #include "core/frame/FrameHost.h" |
48 #include "core/frame/LocalFrame.h" | 48 #include "core/frame/LocalFrame.h" |
49 #include "core/html/HTMLFrameOwnerElement.h" | 49 #include "core/html/HTMLFrameOwnerElement.h" |
50 #include "core/inspector/ConsoleMessage.h" | 50 #include "core/inspector/ConsoleMessage.h" |
51 #include "core/inspector/ConsoleMessageStorage.h" | 51 #include "core/inspector/ConsoleMessageStorage.h" |
52 #include "core/inspector/IdentifiersFactory.h" | 52 #include "core/inspector/IdentifiersFactory.h" |
53 #include "core/inspector/InspectorOverlay.h" | |
54 #include "core/inspector/InspectorPageAgent.h" | 53 #include "core/inspector/InspectorPageAgent.h" |
55 #include "core/inspector/InspectorState.h" | 54 #include "core/inspector/InspectorState.h" |
56 #include "core/inspector/InstrumentingAgents.h" | 55 #include "core/inspector/InstrumentingAgents.h" |
57 #include "core/inspector/NetworkResourcesData.h" | 56 #include "core/inspector/NetworkResourcesData.h" |
58 #include "core/inspector/ScriptAsyncCallStack.h" | 57 #include "core/inspector/ScriptAsyncCallStack.h" |
59 #include "core/inspector/ScriptCallStack.h" | 58 #include "core/inspector/ScriptCallStack.h" |
60 #include "core/loader/DocumentLoader.h" | 59 #include "core/loader/DocumentLoader.h" |
61 #include "core/loader/FrameLoader.h" | 60 #include "core/loader/FrameLoader.h" |
62 #include "core/loader/MixedContentChecker.h" | 61 #include "core/loader/MixedContentChecker.h" |
63 #include "core/loader/ThreadableLoaderClient.h" | 62 #include "core/loader/ThreadableLoaderClient.h" |
(...skipping 981 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1045 , m_removeFinishedReplayXHRTimer(this, &InspectorResourceAgent::removeFinish
edReplayXHRFired) | 1044 , m_removeFinishedReplayXHRTimer(this, &InspectorResourceAgent::removeFinish
edReplayXHRFired) |
1046 { | 1045 { |
1047 } | 1046 } |
1048 | 1047 |
1049 bool InspectorResourceAgent::shouldForceCORSPreflight() | 1048 bool InspectorResourceAgent::shouldForceCORSPreflight() |
1050 { | 1049 { |
1051 return m_state->getBoolean(ResourceAgentState::cacheDisabled); | 1050 return m_state->getBoolean(ResourceAgentState::cacheDisabled); |
1052 } | 1051 } |
1053 | 1052 |
1054 } // namespace blink | 1053 } // namespace blink |
OLD | NEW |