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

Unified Diff: content/browser/plugin_data_remover_impl.cc

Issue 19844003: Remove webkit/plugins/npapi. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: remove GetDefaultWindowParent Created 7 years, 5 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: content/browser/plugin_data_remover_impl.cc
===================================================================
--- content/browser/plugin_data_remover_impl.cc (revision 212595)
+++ content/browser/plugin_data_remover_impl.cc (working copy)
@@ -21,7 +21,6 @@
#include "content/public/browser/browser_thread.h"
#include "content/public/common/pepper_plugin_info.h"
#include "ppapi/proxy/ppapi_messages.h"
-#include "webkit/plugins/npapi/plugin_utils.h"
#include "webkit/plugins/plugin_constants.h"
namespace content {
@@ -51,7 +50,7 @@
for (std::vector<webkit::WebPluginInfo>::iterator it = plugins.begin();
it != plugins.end(); ++it) {
Version version;
- webkit::npapi::CreateVersionFromString(it->version, &version);
+ webkit::WebPluginInfo::CreateVersionFromString(it->version, &version);
if (version.IsValid() && min_version.CompareTo(version) == -1)
supported_plugins->push_back(*it);
}

Powered by Google App Engine
This is Rietveld 408576698