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_NATIVE_WIDGET_AURA_H_ | 5 #ifndef UI_VIEWS_WIDGET_NATIVE_WIDGET_AURA_H_ |
6 #define UI_VIEWS_WIDGET_NATIVE_WIDGET_AURA_H_ | 6 #define UI_VIEWS_WIDGET_NATIVE_WIDGET_AURA_H_ |
7 | 7 |
8 #include "base/memory/scoped_vector.h" | 8 #include "base/memory/scoped_vector.h" |
9 #include "base/memory/weak_ptr.h" | 9 #include "base/memory/weak_ptr.h" |
10 #include "ui/aura/client/focus_change_observer.h" | 10 #include "ui/aura/client/focus_change_observer.h" |
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
51 // Overridden from internal::NativeWidgetPrivate: | 51 // Overridden from internal::NativeWidgetPrivate: |
52 virtual void InitNativeWidget(const Widget::InitParams& params) OVERRIDE; | 52 virtual void InitNativeWidget(const Widget::InitParams& params) OVERRIDE; |
53 virtual NonClientFrameView* CreateNonClientFrameView() OVERRIDE; | 53 virtual NonClientFrameView* CreateNonClientFrameView() OVERRIDE; |
54 virtual bool ShouldUseNativeFrame() const OVERRIDE; | 54 virtual bool ShouldUseNativeFrame() const OVERRIDE; |
55 virtual bool ShouldWindowContentsBeTransparent() const OVERRIDE; | 55 virtual bool ShouldWindowContentsBeTransparent() const OVERRIDE; |
56 virtual void FrameTypeChanged() OVERRIDE; | 56 virtual void FrameTypeChanged() OVERRIDE; |
57 virtual Widget* GetWidget() OVERRIDE; | 57 virtual Widget* GetWidget() OVERRIDE; |
58 virtual const Widget* GetWidget() const OVERRIDE; | 58 virtual const Widget* GetWidget() const OVERRIDE; |
59 virtual gfx::NativeView GetNativeView() const OVERRIDE; | 59 virtual gfx::NativeView GetNativeView() const OVERRIDE; |
60 virtual gfx::NativeWindow GetNativeWindow() const OVERRIDE; | 60 virtual gfx::NativeWindow GetNativeWindow() const OVERRIDE; |
| 61 virtual gfx::NativeViewAccessible GetNativeViewAccessible() const OVERRIDE; |
61 virtual Widget* GetTopLevelWidget() OVERRIDE; | 62 virtual Widget* GetTopLevelWidget() OVERRIDE; |
62 virtual const ui::Compositor* GetCompositor() const OVERRIDE; | 63 virtual const ui::Compositor* GetCompositor() const OVERRIDE; |
63 virtual ui::Compositor* GetCompositor() OVERRIDE; | 64 virtual ui::Compositor* GetCompositor() OVERRIDE; |
64 virtual ui::Layer* GetLayer() OVERRIDE; | 65 virtual ui::Layer* GetLayer() OVERRIDE; |
65 virtual void ReorderNativeViews() OVERRIDE; | 66 virtual void ReorderNativeViews() OVERRIDE; |
66 virtual void ViewRemoved(View* view) OVERRIDE; | 67 virtual void ViewRemoved(View* view) OVERRIDE; |
67 virtual void SetNativeWindowProperty(const char* name, void* value) OVERRIDE; | 68 virtual void SetNativeWindowProperty(const char* name, void* value) OVERRIDE; |
68 virtual void* GetNativeWindowProperty(const char* name) const OVERRIDE; | 69 virtual void* GetNativeWindowProperty(const char* name) const OVERRIDE; |
69 virtual TooltipManager* GetTooltipManager() const OVERRIDE; | 70 virtual TooltipManager* GetTooltipManager() const OVERRIDE; |
70 virtual void SetCapture() OVERRIDE; | 71 virtual void SetCapture() OVERRIDE; |
(...skipping 150 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
221 | 222 |
222 scoped_ptr<DropHelper> drop_helper_; | 223 scoped_ptr<DropHelper> drop_helper_; |
223 int last_drop_operation_; | 224 int last_drop_operation_; |
224 | 225 |
225 DISALLOW_COPY_AND_ASSIGN(NativeWidgetAura); | 226 DISALLOW_COPY_AND_ASSIGN(NativeWidgetAura); |
226 }; | 227 }; |
227 | 228 |
228 } // namespace views | 229 } // namespace views |
229 | 230 |
230 #endif // UI_VIEWS_WIDGET_NATIVE_WIDGET_AURA_H_ | 231 #endif // UI_VIEWS_WIDGET_NATIVE_WIDGET_AURA_H_ |
OLD | NEW |