| 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_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 Loading... |
| 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 Loading... |
| 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_ |
| OLD | NEW |