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

Side by Side Diff: ui/views/view.h

Issue 2746813002: Hide AXPlatformNode on ChromeOS. (Closed)
Patch Set: fix stub Created 3 years, 9 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
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_VIEW_H_ 5 #ifndef UI_VIEWS_VIEW_H_
6 #define UI_VIEWS_VIEW_H_ 6 #define UI_VIEWS_VIEW_H_
7 7
8 #include <stddef.h> 8 #include <stddef.h>
9 9
10 #include <algorithm> 10 #include <algorithm>
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after
65 65
66 namespace views { 66 namespace views {
67 67
68 class Background; 68 class Background;
69 class Border; 69 class Border;
70 class ContextMenuController; 70 class ContextMenuController;
71 class DragController; 71 class DragController;
72 class FocusManager; 72 class FocusManager;
73 class FocusTraversable; 73 class FocusTraversable;
74 class LayoutManager; 74 class LayoutManager;
75 class NativeViewAccessibility; 75 class NativeViewAccessibilityBase;
76 class ScrollView; 76 class ScrollView;
77 class ViewObserver; 77 class ViewObserver;
78 class Widget; 78 class Widget;
79 class WordLookupClient; 79 class WordLookupClient;
80 80
81 namespace internal { 81 namespace internal {
82 class PreEventDispatchHandler; 82 class PreEventDispatchHandler;
83 class PostEventDispatchHandler; 83 class PostEventDispatchHandler;
84 class RootView; 84 class RootView;
85 class ScopedChildrenLock; 85 class ScopedChildrenLock;
(...skipping 1542 matching lines...) Expand 10 before | Expand all | Expand 10 after
1628 1628
1629 DragController* drag_controller_; 1629 DragController* drag_controller_;
1630 1630
1631 // Input -------------------------------------------------------------------- 1631 // Input --------------------------------------------------------------------
1632 1632
1633 std::unique_ptr<ViewTargeter> targeter_; 1633 std::unique_ptr<ViewTargeter> targeter_;
1634 1634
1635 // Accessibility ------------------------------------------------------------- 1635 // Accessibility -------------------------------------------------------------
1636 1636
1637 // The accessibility element used to represent this View. 1637 // The accessibility element used to represent this View.
1638 std::unique_ptr<NativeViewAccessibility> native_view_accessibility_; 1638 std::unique_ptr<NativeViewAccessibilityBase> native_view_accessibility_;
1639 1639
1640 // Observers ------------------------------------------------------------- 1640 // Observers -------------------------------------------------------------
1641 1641
1642 base::ObserverList<ViewObserver> observers_; 1642 base::ObserverList<ViewObserver> observers_;
1643 1643
1644 DISALLOW_COPY_AND_ASSIGN(View); 1644 DISALLOW_COPY_AND_ASSIGN(View);
1645 }; 1645 };
1646 1646
1647 } // namespace views 1647 } // namespace views
1648 1648
1649 #endif // UI_VIEWS_VIEW_H_ 1649 #endif // UI_VIEWS_VIEW_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698