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

Side by Side Diff: Source/core/loader/FrameFetchContext.cpp

Issue 995783002: Gracefully handle mixed content checking on detached resource fetches. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 years, 9 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
« no previous file with comments | « Source/core/html/parser/XSSAuditor.cpp ('k') | Source/core/loader/FrameLoader.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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
OLDNEW
« no previous file with comments | « Source/core/html/parser/XSSAuditor.cpp ('k') | Source/core/loader/FrameLoader.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698