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

Unified Diff: third_party/WebKit/Source/core/html/HTMLMediaElement.cpp

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/html/HTMLMediaElement.cpp
diff --git a/third_party/WebKit/Source/core/html/HTMLMediaElement.cpp b/third_party/WebKit/Source/core/html/HTMLMediaElement.cpp
index a43e6d66f8ee0b4559685b200eeaa299fc9e97a8..64c112fd3267193c73f07648f2c2ebd15299b518 100644
--- a/third_party/WebKit/Source/core/html/HTMLMediaElement.cpp
+++ b/third_party/WebKit/Source/core/html/HTMLMediaElement.cpp
@@ -714,7 +714,7 @@ String HTMLMediaElement::canPlayType(const String& mimeType) const {
// 4.8.10.3
switch (support) {
case MIMETypeRegistry::IsNotSupported:
- canPlay = emptyString();
+ canPlay = emptyString;
break;
case MIMETypeRegistry::MayBeSupported:
canPlay = "maybe";

Powered by Google App Engine
This is Rietveld 408576698