| Index: chrome/common/chrome_content_client.cc
|
| diff --git a/chrome/common/chrome_content_client.cc b/chrome/common/chrome_content_client.cc
|
| index 60551e74c43f1d536ef453e63d1b441b3b536559..6dfb6900991c361941ead6e0af8960445d9d9c5c 100644
|
| --- a/chrome/common/chrome_content_client.cc
|
| +++ b/chrome/common/chrome_content_client.cc
|
| @@ -190,8 +190,8 @@
|
| codecs.push_back(kCdmSupportedCodecAac);
|
| codecs.push_back(kCdmSupportedCodecAvc1);
|
| #endif // defined(USE_PROPRIETARY_CODECS)
|
| - std::string codec_string = base::JoinString(
|
| - codecs, base::string16(1, kCdmSupportedCodecsValueDelimiter));
|
| + std::string codec_string =
|
| + JoinString(codecs, kCdmSupportedCodecsValueDelimiter);
|
| widevine_cdm_mime_type.additional_param_names.push_back(
|
| base::ASCIIToUTF16(kCdmSupportedCodecsParamName));
|
| widevine_cdm_mime_type.additional_param_values.push_back(
|
| @@ -255,7 +255,7 @@
|
| // E.g., "Shockwave Flash 10.2 r154":
|
| plugin.description = plugin.name + " " + flash_version_numbers[0] + "." +
|
| flash_version_numbers[1] + " r" + flash_version_numbers[2];
|
| - plugin.version = base::JoinString(flash_version_numbers, ".");
|
| + plugin.version = JoinString(flash_version_numbers, '.');
|
| content::WebPluginMimeType swf_mime_type(content::kFlashPluginSwfMimeType,
|
| content::kFlashPluginSwfExtension,
|
| content::kFlashPluginSwfDescription);
|
|
|