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 "base/memory/weak_ptr.h" | 8 #include "base/memory/weak_ptr.h" |
9 #include "ui/aura/client/focus_change_observer.h" | 9 #include "ui/aura/client/focus_change_observer.h" |
10 #include "ui/aura/window_delegate.h" | 10 #include "ui/aura/window_delegate.h" |
(...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
97 // Overridden from internal::NativeWidgetPrivate: | 97 // Overridden from internal::NativeWidgetPrivate: |
98 virtual void InitNativeWidget(const Widget::InitParams& params) OVERRIDE; | 98 virtual void InitNativeWidget(const Widget::InitParams& params) OVERRIDE; |
99 virtual NonClientFrameView* CreateNonClientFrameView() OVERRIDE; | 99 virtual NonClientFrameView* CreateNonClientFrameView() OVERRIDE; |
100 virtual bool ShouldUseNativeFrame() const OVERRIDE; | 100 virtual bool ShouldUseNativeFrame() const OVERRIDE; |
101 virtual bool ShouldWindowContentsBeTransparent() const OVERRIDE; | 101 virtual bool ShouldWindowContentsBeTransparent() const OVERRIDE; |
102 virtual void FrameTypeChanged() OVERRIDE; | 102 virtual void FrameTypeChanged() OVERRIDE; |
103 virtual Widget* GetWidget() OVERRIDE; | 103 virtual Widget* GetWidget() OVERRIDE; |
104 virtual const Widget* GetWidget() const OVERRIDE; | 104 virtual const Widget* GetWidget() const OVERRIDE; |
105 virtual gfx::NativeView GetNativeView() const OVERRIDE; | 105 virtual gfx::NativeView GetNativeView() const OVERRIDE; |
106 virtual gfx::NativeWindow GetNativeWindow() const OVERRIDE; | 106 virtual gfx::NativeWindow GetNativeWindow() const OVERRIDE; |
| 107 virtual gfx::NativeViewAccessible GetNativeViewAccessible() const OVERRIDE; |
107 virtual Widget* GetTopLevelWidget() OVERRIDE; | 108 virtual Widget* GetTopLevelWidget() OVERRIDE; |
108 virtual const ui::Compositor* GetCompositor() const OVERRIDE; | 109 virtual const ui::Compositor* GetCompositor() const OVERRIDE; |
109 virtual ui::Compositor* GetCompositor() OVERRIDE; | 110 virtual ui::Compositor* GetCompositor() OVERRIDE; |
110 virtual ui::Layer* GetLayer() OVERRIDE; | 111 virtual ui::Layer* GetLayer() OVERRIDE; |
111 virtual void ReorderNativeViews() OVERRIDE; | 112 virtual void ReorderNativeViews() OVERRIDE; |
112 virtual void ViewRemoved(View* view) OVERRIDE; | 113 virtual void ViewRemoved(View* view) OVERRIDE; |
113 virtual void SetNativeWindowProperty(const char* name, void* value) OVERRIDE; | 114 virtual void SetNativeWindowProperty(const char* name, void* value) OVERRIDE; |
114 virtual void* GetNativeWindowProperty(const char* name) const OVERRIDE; | 115 virtual void* GetNativeWindowProperty(const char* name) const OVERRIDE; |
115 virtual TooltipManager* GetTooltipManager() const OVERRIDE; | 116 virtual TooltipManager* GetTooltipManager() const OVERRIDE; |
116 virtual void SetCapture() OVERRIDE; | 117 virtual void SetCapture() OVERRIDE; |
(...skipping 197 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
314 | 315 |
315 // See class documentation for Widget in widget.h for a note about type. | 316 // See class documentation for Widget in widget.h for a note about type. |
316 Widget::InitParams::Type widget_type_; | 317 Widget::InitParams::Type widget_type_; |
317 | 318 |
318 DISALLOW_COPY_AND_ASSIGN(DesktopNativeWidgetAura); | 319 DISALLOW_COPY_AND_ASSIGN(DesktopNativeWidgetAura); |
319 }; | 320 }; |
320 | 321 |
321 } // namespace views | 322 } // namespace views |
322 | 323 |
323 #endif // UI_VIEWS_WIDGET_DESKTOP_AURA_DESKTOP_NATIVE_WIDGET_AURA_H_ | 324 #endif // UI_VIEWS_WIDGET_DESKTOP_AURA_DESKTOP_NATIVE_WIDGET_AURA_H_ |
OLD | NEW |