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

Unified Diff: third_party/WebKit/Source/core/dom/PendingScript.h

Issue 2815453006: Introduce ModulePendingScript (Closed)
Patch Set: refine Created 3 years, 8 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 side-by-side diff with in-line comments
Download patch
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 f0175f57aeea061e7b97d907e1708ec19620e2eb..f308f0aae4c51b7177df9bbf73da5253a9757095 100644
--- a/third_party/WebKit/Source/core/dom/PendingScript.h
+++ b/third_party/WebKit/Source/core/dom/PendingScript.h
@@ -88,7 +88,6 @@ class CORE_EXPORT PendingScript
// 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;
@@ -96,6 +95,7 @@ class CORE_EXPORT PendingScript
// Used for document.write() intervention.
// Has effects only for classic scripts.
+ virtual KURL UrlForClassicScript() const = 0;
virtual void RemoveFromMemoryCache() = 0;
void Dispose();

Powered by Google App Engine
This is Rietveld 408576698