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

Unified Diff: content/renderer/render_view_impl.h

Issue 1853793003: Remove content/renderer/npapi (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 4 years, 8 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 | « content/renderer/render_thread_impl.cc ('k') | content/renderer/render_view_impl.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/renderer/render_view_impl.h
diff --git a/content/renderer/render_view_impl.h b/content/renderer/render_view_impl.h
index 8e5057e0e849a9b7a3da8eb9445fc045111c4879..c3688b5650394ce5aed1e646331ca3289374778f 100644
--- a/content/renderer/render_view_impl.h
+++ b/content/renderer/render_view_impl.h
@@ -258,14 +258,6 @@ class CONTENT_EXPORT RenderViewImpl
pepper_last_mouse_event_target_ = plugin;
}
-#if defined(OS_MACOSX)
- // Informs the render view that the given plugin has gained or lost focus.
- void PluginFocusChanged(bool focused, int plugin_id);
-
- // Starts plugin IME.
- void StartPluginIme();
-#endif
-
// Indicates that the given instance has been created.
void PepperInstanceCreated(PepperPluginInstanceImpl* instance);
@@ -276,9 +268,6 @@ class CONTENT_EXPORT RenderViewImpl
// Notification that the given plugin is focused or unfocused.
void PepperFocusChanged(PepperPluginInstanceImpl* instance, bool focused);
-
- void RegisterPluginDelegate(WebPluginDelegateProxy* delegate);
- void UnregisterPluginDelegate(WebPluginDelegateProxy* delegate);
#endif // ENABLE_PLUGINS
void TransferActiveWheelFlingAnimation(
@@ -684,11 +673,6 @@ class CONTENT_EXPORT RenderViewImpl
void OnExtractSmartClipData(const gfx::Rect& rect);
#elif defined(OS_MACOSX)
void OnGetRenderedText();
- void OnPluginImeCompositionCompleted(const base::string16& text,
- int plugin_id);
- void OnSetWindowVisibility(bool visible);
- void OnWindowFrameChanged(const gfx::Rect& window_frame,
- const gfx::Rect& view_frame);
#endif
// Page message handlers -----------------------------------------------------
@@ -933,12 +917,6 @@ class CONTENT_EXPORT RenderViewImpl
#endif
// Plugins -------------------------------------------------------------------
-
- // All the currently active plugin delegates for this RenderView; kept so
- // that we can enumerate them to send updates about things like window
- // location or tab focus and visibily. These are non-owning references.
- std::set<WebPluginDelegateProxy*> plugin_delegates_;
-
#if defined(ENABLE_PLUGINS)
typedef std::set<PepperPluginInstanceImpl*> PepperPluginSet;
PepperPluginSet active_pepper_instances_;
« no previous file with comments | « content/renderer/render_thread_impl.cc ('k') | content/renderer/render_view_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698