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

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

Issue 2260303002: Sending an async GET request for doc.written blocked scripts. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebased. Created 4 years, 3 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) 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 66 matching lines...) Expand 10 before | Expand all | Expand 10 after
77 #include "public/platform/WebViewScheduler.h" 77 #include "public/platform/WebViewScheduler.h"
78 #include <algorithm> 78 #include <algorithm>
79 #include <memory> 79 #include <memory>
80 80
81 namespace blink { 81 namespace blink {
82 82
83 namespace { 83 namespace {
84 84
85 void emitWarningForDocWriteScripts(const String& url, Document& document) 85 void emitWarningForDocWriteScripts(const String& url, Document& document)
86 { 86 {
87 String message = "A Parser-blocking, cross-origin script, " + url + ", is in voked via document.write. This may be blocked by the browser if the device has p oor network connectivity."; 87 String message = "A Parser-blocking, cross-origin script, " + url + ", is in voked via document.write. This may be blocked by the browser if the device has p oor network connectivity. See https://www.chromestatus.com/feature/5718547946799 104 for more details.";
88 document.addConsoleMessage(ConsoleMessage::create(JSMessageSource, WarningMe ssageLevel, message)); 88 document.addConsoleMessage(ConsoleMessage::create(JSMessageSource, WarningMe ssageLevel, message));
89 WTFLogAlways("%s", message.utf8().data()); 89 WTFLogAlways("%s", message.utf8().data());
90 } 90 }
91 91
92 bool shouldDisallowFetchForMainFrameScript(const ResourceRequest& request, Fetch Request::DeferOption defer, Document& document) 92 bool shouldDisallowFetchForMainFrameScript(const ResourceRequest& request, Fetch Request::DeferOption defer, Document& document)
93 { 93 {
94 // Only scripts inserted via document.write are candidates for having their 94 // Only scripts inserted via document.write are candidates for having their
95 // fetch disallowed. 95 // fetch disallowed.
96 if (!document.isInDocumentWrite()) 96 if (!document.isInDocumentWrite())
97 return false; 97 return false;
(...skipping 733 matching lines...) Expand 10 before | Expand all | Expand 10 after
831 } 831 }
832 832
833 DEFINE_TRACE(FrameFetchContext) 833 DEFINE_TRACE(FrameFetchContext)
834 { 834 {
835 visitor->trace(m_document); 835 visitor->trace(m_document);
836 visitor->trace(m_documentLoader); 836 visitor->trace(m_documentLoader);
837 FetchContext::trace(visitor); 837 FetchContext::trace(visitor);
838 } 838 }
839 839
840 } // namespace blink 840 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698