From c5e4a2224ab96a7380e768c6a6148985accd3488 Mon Sep 17 00:00:00 2001 From: "avi@chromium.org" Date: Fri, 3 Jan 2014 16:06:13 +0000 Subject: Revert "Update all users of base::Version to explicitly specify the namespace, and clean up the header." This is a speculative revert of r242414. BUG=330681 TEST=as in bug TBR=ben@chromium.org Review URL: https://codereview.chromium.org/109673004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@242889 0039d316-1c4b-4281-b951-d872f2087c98 --- content/browser/plugin_data_remover_impl.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'content/browser/plugin_data_remover_impl.cc') diff --git a/content/browser/plugin_data_remover_impl.cc b/content/browser/plugin_data_remover_impl.cc index 31d3e27..9133e59 100644 --- a/content/browser/plugin_data_remover_impl.cc +++ b/content/browser/plugin_data_remover_impl.cc @@ -46,10 +46,10 @@ void PluginDataRemover::GetSupportedPlugins( std::vector plugins; PluginService::GetInstance()->GetPluginInfoArray( GURL(), kFlashPluginSwfMimeType, allow_wildcard, &plugins, NULL); - base::Version min_version(kMinFlashVersion); + Version min_version(kMinFlashVersion); for (std::vector::iterator it = plugins.begin(); it != plugins.end(); ++it) { - base::Version version; + Version version; WebPluginInfo::CreateVersionFromString(it->version, &version); if (version.IsValid() && min_version.CompareTo(version) == -1) supported_plugins->push_back(*it); -- cgit v1.1