Index: Source/web/WebDocument.cpp |
diff --git a/Source/web/WebDocument.cpp b/Source/web/WebDocument.cpp |
index dc899fb9b06843f57e4fc89072b290d6a044afd4..df873f521ffa16da14de5ec64ed4df519b1c0d8c 100644 |
--- a/Source/web/WebDocument.cpp |
+++ b/Source/web/WebDocument.cpp |
@@ -262,6 +262,11 @@ WebReferrerPolicy WebDocument::referrerPolicy() const |
return static_cast<WebReferrerPolicy>(constUnwrap<Document>()->referrerPolicy()); |
} |
+WebString WebDocument::outgoingReferrer() |
+{ |
+ return WebString(unwrap<Document>()->outgoingReferrer()); |
Mike West
2015/08/20 20:07:25
Nit: Can this be `constUnwrap`?
|
+} |
+ |
WebElement WebDocument::createElement(const WebString& tagName) |
{ |
TrackExceptionState exceptionState; |