summaryrefslogtreecommitdiffstats
path: root/chrome/browser/renderer_host/render_widget_host_view_gtk.h
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/browser/renderer_host/render_widget_host_view_gtk.h')
-rw-r--r--chrome/browser/renderer_host/render_widget_host_view_gtk.h11
1 files changed, 2 insertions, 9 deletions
diff --git a/chrome/browser/renderer_host/render_widget_host_view_gtk.h b/chrome/browser/renderer_host/render_widget_host_view_gtk.h
index 937e254..97ec6cf 100644
--- a/chrome/browser/renderer_host/render_widget_host_view_gtk.h
+++ b/chrome/browser/renderer_host/render_widget_host_view_gtk.h
@@ -64,10 +64,8 @@ class RenderWidgetHostViewGtk : public RenderWidgetHostView {
virtual void PasteFromSelectionClipboard();
virtual void ShowingContextMenu(bool showing);
virtual BackingStore* AllocBackingStore(const gfx::Size& size);
- virtual gfx::PluginWindowHandle CreatePluginContainer(
- base::ProcessId plugin_process_id);
- virtual void DestroyPluginContainer(gfx::PluginWindowHandle container);
- virtual void PluginProcessCrashed(base::ProcessId pid);
+ virtual void CreatePluginContainer(gfx::PluginWindowHandle id);
+ virtual void DestroyPluginContainer(gfx::PluginWindowHandle id);
gfx::NativeView native_view() const { return view_.get(); }
@@ -129,11 +127,6 @@ class RenderWidgetHostViewGtk : public RenderWidgetHostView {
// Helper class that lets us allocate plugin containers and move them.
GtkPluginContainerManager plugin_container_manager_;
-
- // A map of plugin process id -> windows related to that process.
- // Lets us clean up immediately when a plugin process crashes.
- typedef std::multimap<base::ProcessId, gfx::PluginWindowHandle> PluginPidMap;
- PluginPidMap plugin_pid_map_;
};
#endif // CHROME_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_GTK_H_