| Index: ui/views/widget/native_widget_mac.h
|
| diff --git a/ui/views/widget/native_widget_mac.h b/ui/views/widget/native_widget_mac.h
|
| index 74a3721b0d2d2b3f03a0f629c59374d77bf4a899..6925a55d3b9868466b52ffc0506fa8f80263c072 100644
|
| --- a/ui/views/widget/native_widget_mac.h
|
| +++ b/ui/views/widget/native_widget_mac.h
|
| @@ -5,7 +5,6 @@
|
| #ifndef UI_VIEWS_WIDGET_NATIVE_WIDGET_MAC_H_
|
| #define UI_VIEWS_WIDGET_NATIVE_WIDGET_MAC_H_
|
|
|
| -#include "base/mac/scoped_nsobject.h"
|
| #include "ui/gfx/native_widget_types.h"
|
| #include "ui/views/widget/native_widget_private.h"
|
|
|
| @@ -106,8 +105,10 @@ class VIEWS_EXPORT NativeWidgetMac : public internal::NativeWidgetPrivate {
|
| virtual ui::EventHandler* GetEventHandler() OVERRIDE;
|
|
|
| private:
|
| + class Impl;
|
| +
|
| internal::NativeWidgetDelegate* delegate_;
|
| - base::scoped_nsobject<NSWindow> window_;
|
| + scoped_ptr<Impl> impl_;
|
|
|
| DISALLOW_COPY_AND_ASSIGN(NativeWidgetMac);
|
| };
|
|
|