| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2013 Google Inc. All rights reserved. | 2 * Copyright (C) 2013 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 25 matching lines...) Expand all Loading... |
| 36 #include "core/frame/FrameConsole.h" | 36 #include "core/frame/FrameConsole.h" |
| 37 #include "core/frame/FrameHost.h" | 37 #include "core/frame/FrameHost.h" |
| 38 #include "core/frame/LocalFrame.h" | 38 #include "core/frame/LocalFrame.h" |
| 39 #include "core/html/imports/HTMLImportsController.h" | 39 #include "core/html/imports/HTMLImportsController.h" |
| 40 #include "core/inspector/InspectorInstrumentation.h" | 40 #include "core/inspector/InspectorInstrumentation.h" |
| 41 #include "core/inspector/InspectorTraceEvents.h" | 41 #include "core/inspector/InspectorTraceEvents.h" |
| 42 #include "core/loader/DocumentLoader.h" | 42 #include "core/loader/DocumentLoader.h" |
| 43 #include "core/loader/FrameLoader.h" | 43 #include "core/loader/FrameLoader.h" |
| 44 #include "core/loader/FrameLoaderClient.h" | 44 #include "core/loader/FrameLoaderClient.h" |
| 45 #include "core/loader/LinkLoader.h" | 45 #include "core/loader/LinkLoader.h" |
| 46 #include "core/loader/MixedContentChecker.h" |
| 46 #include "core/loader/ProgressTracker.h" | 47 #include "core/loader/ProgressTracker.h" |
| 47 #include "core/page/Page.h" | 48 #include "core/page/Page.h" |
| 48 #include "core/frame/Settings.h" | 49 #include "core/frame/Settings.h" |
| 49 #include "platform/weborigin/SecurityPolicy.h" | 50 #include "platform/weborigin/SecurityPolicy.h" |
| 50 | 51 |
| 51 namespace blink { | 52 namespace blink { |
| 52 | 53 |
| 53 FrameFetchContext::FrameFetchContext(DocumentLoader* loader) | 54 FrameFetchContext::FrameFetchContext(DocumentLoader* loader) |
| 54 : m_document(nullptr) | 55 : m_document(nullptr) |
| 55 , m_documentLoader(loader) | 56 , m_documentLoader(loader) |
| (...skipping 250 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 306 dispatchDidFinishLoading(identifier, 0, 0); | 307 dispatchDidFinishLoading(identifier, 0, 0); |
| 307 } | 308 } |
| 308 | 309 |
| 309 DEFINE_TRACE(FrameFetchContext) | 310 DEFINE_TRACE(FrameFetchContext) |
| 310 { | 311 { |
| 311 visitor->trace(m_document); | 312 visitor->trace(m_document); |
| 312 FetchContext::trace(visitor); | 313 FetchContext::trace(visitor); |
| 313 } | 314 } |
| 314 | 315 |
| 315 } // namespace blink | 316 } // namespace blink |
| OLD | NEW |