| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef UI_VIEWS_WIDGET_DESKTOP_AURA_DESKTOP_NATIVE_WIDGET_AURA_H_ | 5 #ifndef UI_VIEWS_WIDGET_DESKTOP_AURA_DESKTOP_NATIVE_WIDGET_AURA_H_ |
| 6 #define UI_VIEWS_WIDGET_DESKTOP_AURA_DESKTOP_NATIVE_WIDGET_AURA_H_ | 6 #define UI_VIEWS_WIDGET_DESKTOP_AURA_DESKTOP_NATIVE_WIDGET_AURA_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 | 9 |
| 10 #include "base/macros.h" | 10 #include "base/macros.h" |
| (...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 92 aura::Window* content_window() { return content_window_; } | 92 aura::Window* content_window() { return content_window_; } |
| 93 | 93 |
| 94 Widget::InitParams::Type widget_type() const { return widget_type_; } | 94 Widget::InitParams::Type widget_type() const { return widget_type_; } |
| 95 | 95 |
| 96 // Ensures that the correct window is activated/deactivated based on whether | 96 // Ensures that the correct window is activated/deactivated based on whether |
| 97 // we are being activated/deactivated. | 97 // we are being activated/deactivated. |
| 98 void HandleActivationChanged(bool active); | 98 void HandleActivationChanged(bool active); |
| 99 | 99 |
| 100 // Overridden from internal::NativeWidgetPrivate: | 100 // Overridden from internal::NativeWidgetPrivate: |
| 101 gfx::NativeWindow GetNativeWindow() const override; | 101 gfx::NativeWindow GetNativeWindow() const override; |
| 102 void SetNativeWindowProperty(const char* name, void* value) override; | |
| 103 | 102 |
| 104 protected: | 103 protected: |
| 105 // Overridden from internal::NativeWidgetPrivate: | 104 // Overridden from internal::NativeWidgetPrivate: |
| 106 void InitNativeWidget(const Widget::InitParams& params) override; | 105 void InitNativeWidget(const Widget::InitParams& params) override; |
| 107 void OnWidgetInitDone() override; | 106 void OnWidgetInitDone() override; |
| 108 NonClientFrameView* CreateNonClientFrameView() override; | 107 NonClientFrameView* CreateNonClientFrameView() override; |
| 109 bool ShouldUseNativeFrame() const override; | 108 bool ShouldUseNativeFrame() const override; |
| 110 bool ShouldWindowContentsBeTransparent() const override; | 109 bool ShouldWindowContentsBeTransparent() const override; |
| 111 void FrameTypeChanged() override; | 110 void FrameTypeChanged() override; |
| 112 Widget* GetWidget() override; | 111 Widget* GetWidget() override; |
| 113 const Widget* GetWidget() const override; | 112 const Widget* GetWidget() const override; |
| 114 gfx::NativeView GetNativeView() const override; | 113 gfx::NativeView GetNativeView() const override; |
| 115 Widget* GetTopLevelWidget() override; | 114 Widget* GetTopLevelWidget() override; |
| 116 const ui::Compositor* GetCompositor() const override; | 115 const ui::Compositor* GetCompositor() const override; |
| 117 const ui::Layer* GetLayer() const override; | 116 const ui::Layer* GetLayer() const override; |
| 118 void ReorderNativeViews() override; | 117 void ReorderNativeViews() override; |
| 119 void ViewRemoved(View* view) override; | 118 void ViewRemoved(View* view) override; |
| 119 void SetNativeWindowProperty(const char* name, void* value) override; |
| 120 void* GetNativeWindowProperty(const char* name) const override; | 120 void* GetNativeWindowProperty(const char* name) const override; |
| 121 TooltipManager* GetTooltipManager() const override; | 121 TooltipManager* GetTooltipManager() const override; |
| 122 void SetCapture() override; | 122 void SetCapture() override; |
| 123 void ReleaseCapture() override; | 123 void ReleaseCapture() override; |
| 124 bool HasCapture() const override; | 124 bool HasCapture() const override; |
| 125 ui::InputMethod* GetInputMethod() override; | 125 ui::InputMethod* GetInputMethod() override; |
| 126 void CenterWindow(const gfx::Size& size) override; | 126 void CenterWindow(const gfx::Size& size) override; |
| 127 void GetWindowPlacement(gfx::Rect* bounds, | 127 void GetWindowPlacement(gfx::Rect* bounds, |
| 128 ui::WindowShowState* maximized) const override; | 128 ui::WindowShowState* maximized) const override; |
| 129 bool SetWindowTitle(const base::string16& title) override; | 129 bool SetWindowTitle(const base::string16& title) override; |
| (...skipping 181 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 311 // The following factory is used for calls to close the NativeWidgetAura | 311 // The following factory is used for calls to close the NativeWidgetAura |
| 312 // instance. | 312 // instance. |
| 313 base::WeakPtrFactory<DesktopNativeWidgetAura> close_widget_factory_; | 313 base::WeakPtrFactory<DesktopNativeWidgetAura> close_widget_factory_; |
| 314 | 314 |
| 315 DISALLOW_COPY_AND_ASSIGN(DesktopNativeWidgetAura); | 315 DISALLOW_COPY_AND_ASSIGN(DesktopNativeWidgetAura); |
| 316 }; | 316 }; |
| 317 | 317 |
| 318 } // namespace views | 318 } // namespace views |
| 319 | 319 |
| 320 #endif // UI_VIEWS_WIDGET_DESKTOP_AURA_DESKTOP_NATIVE_WIDGET_AURA_H_ | 320 #endif // UI_VIEWS_WIDGET_DESKTOP_AURA_DESKTOP_NATIVE_WIDGET_AURA_H_ |
| OLD | NEW |