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

Unified Diff: third_party/WebKit/Source/core/xml/XSLStyleSheet.h

Issue 2668903003: Replace WTF::emptyString{16Bit}() with a static global (Closed)
Patch Set: Replace WTF::emptyString{16Bit}() with a static global Created 3 years, 11 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/xml/XSLStyleSheet.h
diff --git a/third_party/WebKit/Source/core/xml/XSLStyleSheet.h b/third_party/WebKit/Source/core/xml/XSLStyleSheet.h
index 274538197122c68d219613933d3b8b76e7e26c26..f057d2da616969949ccc3f2999385650021080ba 100644
--- a/third_party/WebKit/Source/core/xml/XSLStyleSheet.h
+++ b/third_party/WebKit/Source/core/xml/XSLStyleSheet.h
@@ -98,7 +98,7 @@ class XSLStyleSheet final : public StyleSheet {
void setDisabled(bool b) override { m_isDisabled = b; }
Node* ownerNode() const override { return m_ownerNode; }
String href() const override { return m_originalURL; }
- String title() const override { return emptyString(); }
+ String title() const override { return emptyString; }
void clearOwnerNode() override { m_ownerNode = nullptr; }
KURL baseURL() const override { return m_finalURL; }

Powered by Google App Engine
This is Rietveld 408576698