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

Unified Diff: Source/web/WebDocument.cpp

Issue 246433004: Rename cookieURL to inheritedURL and add inheritedURL() to WebDocument (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 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: Source/web/WebDocument.cpp
diff --git a/Source/web/WebDocument.cpp b/Source/web/WebDocument.cpp
index 0d457f1e8dd9c505326d2fa3634eec52d6cc0bf4..1120a5c67cdfd62274024f60d9d99aac9e632dc8 100644
--- a/Source/web/WebDocument.cpp
+++ b/Source/web/WebDocument.cpp
@@ -75,6 +75,11 @@ WebURL WebDocument::url() const
return constUnwrap<Document>()->url();
}
+WebURL WebDocument::inheritedURL() const
+{
+ return constUnwrap<Document>()->inheritedURL();
+}
+
WebSecurityOrigin WebDocument::securityOrigin() const
{
if (!constUnwrap<Document>())

Powered by Google App Engine
This is Rietveld 408576698