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

Unified Diff: chrome/browser/renderer_host/render_widget_host_view_mac.h

Issue 3319004: Mac: Make resizing the window larger nicer when compositor is active (Closed)
Patch Set: comments Created 10 years, 3 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 | chrome/browser/renderer_host/render_widget_host_view_mac.mm » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/renderer_host/render_widget_host_view_mac.h
diff --git a/chrome/browser/renderer_host/render_widget_host_view_mac.h b/chrome/browser/renderer_host/render_widget_host_view_mac.h
index b65637b1ef1e54e8306a77be0d64f2c2b31fc9b0..4392b138eff82e5181f982d3ed40410424c300a9 100644
--- a/chrome/browser/renderer_host/render_widget_host_view_mac.h
+++ b/chrome/browser/renderer_host/render_widget_host_view_mac.h
@@ -284,6 +284,12 @@ class RenderWidgetHostViewMac : public RenderWidgetHostView {
// Current text input type.
WebKit::WebTextInputType text_input_type_;
+ typedef std::map<gfx::PluginWindowHandle, NSView*> PluginViewMap;
+ PluginViewMap plugin_views_; // Weak values.
+
+ // Helper class for managing instances of accelerated plug-ins.
+ AcceleratedSurfaceContainerManagerMac plugin_container_manager_;
+
private:
// Updates the display cursor to the current cursor if the cursor is over this
// render view.
@@ -301,9 +307,6 @@ class RenderWidgetHostViewMac : public RenderWidgetHostView {
// closed).
RenderWidgetHostViewCocoa* cocoa_view_;
- typedef std::map<gfx::PluginWindowHandle, NSView*> PluginViewMap;
- PluginViewMap plugin_views_; // Weak values.
-
// The cursor for the page. This is passed up from the renderer.
WebCursor current_cursor_;
@@ -326,9 +329,6 @@ class RenderWidgetHostViewMac : public RenderWidgetHostView {
// Used for positioning a popup menu.
NSView* parent_view_;
- // Helper class for managing instances of accelerated plug-ins.
- AcceleratedSurfaceContainerManagerMac plugin_container_manager_;
-
// Whether or not web accessibility is enabled.
bool renderer_accessible_;
« no previous file with comments | « no previous file | chrome/browser/renderer_host/render_widget_host_view_mac.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698