diff options
Diffstat (limited to 'ui/views/widget/widget.h')
-rw-r--r-- | ui/views/widget/widget.h | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/ui/views/widget/widget.h b/ui/views/widget/widget.h index 82ab276..c754e95 100644 --- a/ui/views/widget/widget.h +++ b/ui/views/widget/widget.h @@ -11,7 +11,6 @@ #include "base/gtest_prod_util.h" #include "base/memory/scoped_ptr.h" -#include "base/memory/weak_ptr.h" #include "base/observer_list.h" #include "ui/base/accessibility/accessibility_types.h" #include "ui/base/ui_base_types.h" @@ -164,7 +163,6 @@ class VIEWS_EXPORT Widget : public internal::NativeWidgetDelegate, bool transparent; bool accept_events; bool can_activate; - bool close_on_deactivate; bool keep_on_top; Ownership ownership; bool mirror_origin_in_rtl; @@ -695,8 +693,6 @@ class VIEWS_EXPORT Widget : public internal::NativeWidgetDelegate, // It's only for testing purpose. void ReplaceInputMethod(InputMethod* input_method); - base::WeakPtrFactory<Widget> set_capture_factory_; - internal::NativeWidgetPrivate* native_widget_; ObserverList<Observer> observers_; @@ -762,11 +758,6 @@ class VIEWS_EXPORT Widget : public internal::NativeWidgetDelegate, // initial focus for the widget. bool focus_on_creation_; - // If true, the widget is closed when the user clicks outside the root view's - // bounds. This intentionally encompasses some situations where deactivation - // does not happen. - bool close_on_deactivate_; - scoped_ptr<InputMethod> input_method_; // See |is_top_level()| accessor. |