Index: Source/core/dom/Document.cpp |
diff --git a/Source/core/dom/Document.cpp b/Source/core/dom/Document.cpp |
index c8483299b8882c185fa46d5458be3c3d5118effb..8bdf30b34465df9dc4afe2d9311151da48bf4df2 100644 |
--- a/Source/core/dom/Document.cpp |
+++ b/Source/core/dom/Document.cpp |
@@ -3743,11 +3743,11 @@ void Document::setCookie(const String& value, ExceptionState& exceptionState) |
setCookies(this, cookieURL, value); |
} |
-String Document::referrer() const |
+AtomicString Document::referrer() const |
{ |
if (loader()) |
return loader()->request().httpReferrer(); |
- return String(); |
+ return nullAtom; |
} |
String Document::domain() const |