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

Unified Diff: chrome/browser/hang_monitor/hung_plugin_action.cc

Issue 19761007: Move NPAPI implementation out of webkit/plugins/npapi and into content. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: fix mac 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
« no previous file with comments | « no previous file | content/browser/plugin_loader_posix.cc » ('j') | content/child/npapi/plugin_stream_url.h » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/hang_monitor/hung_plugin_action.cc
===================================================================
--- chrome/browser/hang_monitor/hung_plugin_action.cc (revision 212369)
+++ chrome/browser/hang_monitor/hung_plugin_action.cc (working copy)
@@ -14,7 +14,6 @@
#include "ui/base/l10n/l10n_util.h"
#include "ui/base/win/hwnd_util.h"
#include "webkit/plugins/npapi/plugin_utils.h"
-#include "webkit/plugins/npapi/webplugin_delegate_impl.h"
namespace {
@@ -175,9 +174,8 @@
// we have gone too far.
return false;
}
- if (webkit::npapi::WebPluginDelegateImpl::GetPluginNameFromWindow(
- window_to_check, plugin_name)) {
- webkit::npapi::WebPluginDelegateImpl::GetPluginVersionFromWindow(
+ if (webkit::npapi::GetPluginNameFromWindow(window_to_check, plugin_name)) {
+ webkit::npapi::GetPluginVersionFromWindow(
window_to_check, plugin_version);
return true;
}
« no previous file with comments | « no previous file | content/browser/plugin_loader_posix.cc » ('j') | content/child/npapi/plugin_stream_url.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698