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

Unified Diff: content/browser/plugin_service_impl.h

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_service_impl.h
===================================================================
--- content/browser/plugin_service_impl.h (revision 212595)
+++ content/browser/plugin_service_impl.h (working copy)
@@ -108,9 +108,17 @@
virtual void UnregisterInternalPlugin(const base::FilePath& path) OVERRIDE;
virtual void GetInternalPlugins(
std::vector<webkit::WebPluginInfo>* plugins) OVERRIDE;
+ virtual bool NPAPIPluginsSupported() OVERRIDE;
virtual void DisablePluginsDiscoveryForTesting() OVERRIDE;
#if defined(OS_MACOSX)
virtual void AppActivated() OVERRIDE;
+#elif defined(OS_WIN)
+ virtual bool GetPluginInfoFromWindow(HWND window,
+ base::string16* plugin_name,
+ base::string16* plugin_version) OVERRIDE;
+
+ // Returns true iff the given HWND is a plugin.
+ bool IsPluginWindow(HWND window);
#endif
// Returns the plugin process host corresponding to the plugin process that

Powered by Google App Engine
This is Rietveld 408576698