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

Unified Diff: Source/platform/ContentType.cpp

Issue 359903002: Call WTFString::split(UChar, Vector&) when possible (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Update tests as well Created 6 years, 6 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 | « Source/core/timing/Performance.cpp ('k') | Source/platform/graphics/gpu/Extensions3DUtil.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/platform/ContentType.cpp
diff --git a/Source/platform/ContentType.cpp b/Source/platform/ContentType.cpp
index ac51a53fe69c7df87cfcfcd7651f9d096eae33a6..1b40aef752ab483c11c783738fd5bd0691db6691 100644
--- a/Source/platform/ContentType.cpp
+++ b/Source/platform/ContentType.cpp
@@ -84,7 +84,7 @@ Vector<String> ContentType::codecs() const
return Vector<String>();
Vector<String> codecs;
- codecsParameter.split(",", codecs);
+ codecsParameter.split(',', codecs);
for (size_t i = 0; i < codecs.size(); ++i)
codecs[i] = codecs[i].simplifyWhiteSpace();
« no previous file with comments | « Source/core/timing/Performance.cpp ('k') | Source/platform/graphics/gpu/Extensions3DUtil.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698