| Index: chrome/common/chrome_content_client.cc
|
| diff --git a/chrome/common/chrome_content_client.cc b/chrome/common/chrome_content_client.cc
|
| index f64e323742bae73b0efd87cb7e6dcbcd3fcb5273..2db20d9c121de1a6eef0dccacb39daaf2feed16c 100644
|
| --- a/chrome/common/chrome_content_client.cc
|
| +++ b/chrome/common/chrome_content_client.cc
|
| @@ -401,7 +401,7 @@ bool GetSystemPepperFlash(content::PepperPluginInfo* plugin) {
|
| if (!manifest_value->GetAsDictionary(&manifest))
|
| return false;
|
|
|
| - Version version;
|
| + base::Version version;
|
| if (!chrome::CheckPepperFlashManifest(*manifest, &version))
|
| return false;
|
|
|
| @@ -503,7 +503,7 @@ content::PepperPluginInfo* ChromeContentClient::FindMostRecentPlugin(
|
| std::map<PluginSortKey, content::PepperPluginInfo*> plugin_map;
|
|
|
| for (auto* plugin : plugins) {
|
| - Version version(plugin->version);
|
| + base::Version version(plugin->version);
|
| DCHECK(version.IsValid());
|
| plugin_map[PluginSortKey(version, plugin->is_debug,
|
| plugin->is_bundled, plugin->is_on_local_drive,
|
|
|