Commit 680558e9 authored by tapted@chromium.org's avatar tapted@chromium.org

MacViews: Fix a forward declare of InputMethodDelegate in native_widget_private.h

It should be in namespace views::internal.

BUG=378134

Review URL: https://codereview.chromium.org/325163002

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@276548 0039d316-1c4b-4281-b951-d872f2087c98
parent 012dc42a
...@@ -40,7 +40,7 @@ class VIEWS_EXPORT NativeWidgetMac : public internal::NativeWidgetPrivate { ...@@ -40,7 +40,7 @@ class VIEWS_EXPORT NativeWidgetMac : public internal::NativeWidgetPrivate {
virtual void ReleaseCapture() OVERRIDE; virtual void ReleaseCapture() OVERRIDE;
virtual bool HasCapture() const OVERRIDE; virtual bool HasCapture() const OVERRIDE;
virtual InputMethod* CreateInputMethod() OVERRIDE; virtual InputMethod* CreateInputMethod() OVERRIDE;
virtual InputMethodDelegate* GetInputMethodDelegate() OVERRIDE; virtual internal::InputMethodDelegate* GetInputMethodDelegate() OVERRIDE;
virtual ui::InputMethod* GetHostInputMethod() OVERRIDE; virtual ui::InputMethod* GetHostInputMethod() OVERRIDE;
virtual void CenterWindow(const gfx::Size& size) OVERRIDE; virtual void CenterWindow(const gfx::Size& size) OVERRIDE;
virtual void GetWindowPlacement( virtual void GetWindowPlacement(
......
...@@ -129,7 +129,7 @@ InputMethod* NativeWidgetMac::CreateInputMethod() { ...@@ -129,7 +129,7 @@ InputMethod* NativeWidgetMac::CreateInputMethod() {
return NULL; return NULL;
} }
InputMethodDelegate* NativeWidgetMac::GetInputMethodDelegate() { internal::InputMethodDelegate* NativeWidgetMac::GetInputMethodDelegate() {
NOTIMPLEMENTED(); NOTIMPLEMENTED();
return NULL; return NULL;
} }
......
...@@ -24,9 +24,9 @@ class OSExchangeData; ...@@ -24,9 +24,9 @@ class OSExchangeData;
namespace views { namespace views {
class InputMethod; class InputMethod;
class InputMethodDelegate;
class TooltipManager; class TooltipManager;
namespace internal { namespace internal {
class InputMethodDelegate;
//////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////
// NativeWidgetPrivate interface // NativeWidgetPrivate interface
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment