| Index: content/browser/renderer_host/render_widget_host_view_mac.h
|
| diff --git a/content/browser/renderer_host/render_widget_host_view_mac.h b/content/browser/renderer_host/render_widget_host_view_mac.h
|
| index 7685f2922cfdb3042dba2cfcf2cc511e96669abf..b8086998c96381c6727237dd6ad7fe6eee6d0677 100644
|
| --- a/content/browser/renderer_host/render_widget_host_view_mac.h
|
| +++ b/content/browser/renderer_host/render_widget_host_view_mac.h
|
| @@ -66,6 +66,9 @@ class RenderWidgetHostImpl;
|
|
|
| NSWindow* lastWindow_; // weak
|
|
|
| + // The cursor for the page. This is passed up from the renderer.
|
| + scoped_nsobject<NSCursor> currentCursor_;
|
| +
|
| // Variables used by our implementaion of the NSTextInput protocol.
|
| // An input method of Mac calls the methods of this protocol not only to
|
| // notify an application of its status, but also to retrieve the status of
|
| @@ -154,7 +157,7 @@ class RenderWidgetHostImpl;
|
| // Evaluates the event in the context of plugin IME, if plugin IME is enabled.
|
| // Returns YES if the event was handled.
|
| - (BOOL)postProcessEventForPluginIme:(NSEvent*)event;
|
| -
|
| +- (void)updateCursor:(NSCursor*)cursor;
|
| @end
|
|
|
| ///////////////////////////////////////////////////////////////////////////////
|
| @@ -388,9 +391,6 @@ class RenderWidgetHostViewMac : public content::RenderWidgetHostViewBase {
|
| // Returns whether this render view is a popup (autocomplete window).
|
| bool IsPopup() const;
|
|
|
| - // Updates the display cursor if the current event is over the view's window.
|
| - void UpdateCursorIfNecessary();
|
| -
|
| // Shuts down the render_widget_host_. This is a separate function so we can
|
| // invoke it from the message loop.
|
| void ShutdownHost();
|
| @@ -404,9 +404,6 @@ class RenderWidgetHostViewMac : public content::RenderWidgetHostViewBase {
|
| // to own this RenderWidgetHostViewMac object.
|
| RenderWidgetHostViewCocoa* cocoa_view_;
|
|
|
| - // The cursor for the page. This is passed up from the renderer.
|
| - WebCursor current_cursor_;
|
| -
|
| // Indicates if the page is loading.
|
| bool is_loading_;
|
|
|
|
|