Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(74)

Side by Side Diff: ui/views/widget/desktop_aura/desktop_native_widget_aura.h

Issue 420653003: MacViews: Accessibility bridge (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: 2nd draft, based on 423513005 Created 6 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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
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
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_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698