Index: third_party/WebKit/Source/core/dom/PendingScript.h |
diff --git a/third_party/WebKit/Source/core/dom/PendingScript.h b/third_party/WebKit/Source/core/dom/PendingScript.h |
index 6886b9bb7e73abb0718a40f719ea46defc7d726c..f0175f57aeea061e7b97d907e1708ec19620e2eb 100644 |
--- a/third_party/WebKit/Source/core/dom/PendingScript.h |
+++ b/third_party/WebKit/Source/core/dom/PendingScript.h |
@@ -88,14 +88,14 @@ |
// https://html.spec.whatwg.org/#the-script-is-ready |
virtual bool IsReady() const = 0; |
+ virtual KURL Url() const = 0; |
virtual bool IsExternal() const = 0; |
virtual bool ErrorOccurred() const = 0; |
virtual bool WasCanceled() const = 0; |
virtual void StartStreamingIfPossible(Document*, ScriptStreamer::Type) = 0; |
- // The following two methods are used for document.write() intervention and |
- // have effects only for classic scripts. |
- virtual KURL UrlForClassicScript() const = 0; |
+ // Used for document.write() intervention. |
+ // Has effects only for classic scripts. |
virtual void RemoveFromMemoryCache() = 0; |
void Dispose(); |