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

Unified Diff: Source/core/dom/Document.h

Issue 122993002: Make calls to AtomicString(const String&) explicit in web/ (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Use AtomicString type for frameName and target Created 6 years, 12 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
« no previous file with comments | « no previous file | Source/core/dom/Element.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/dom/Document.h
diff --git a/Source/core/dom/Document.h b/Source/core/dom/Document.h
index 475970ebc3c6bed3d3e3729130a2575189605258..d8227ebc310d466723c797dfe37cb8d49a5ffb00 100644
--- a/Source/core/dom/Document.h
+++ b/Source/core/dom/Document.h
@@ -538,7 +538,7 @@ public:
void setBaseURLOverride(const KURL&);
const KURL& baseURLOverride() const { return m_baseURLOverride; }
const KURL& baseElementURL() const { return m_baseElementURL; }
- const String& baseTarget() const { return m_baseTarget; }
+ const AtomicString& baseTarget() const { return m_baseTarget; }
void processBaseElement();
KURL completeURL(const String&) const;
@@ -1132,7 +1132,7 @@ private:
// takes precedence.
String m_documentURI;
- String m_baseTarget;
+ AtomicString m_baseTarget;
RefPtr<DocumentType> m_docType;
OwnPtr<DOMImplementation> m_implementation;
« no previous file with comments | « no previous file | Source/core/dom/Element.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698