| 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 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 53 } | 53 } |
| 54 | 54 |
| 55 namespace ui { | 55 namespace ui { |
| 56 struct AXActionData; | 56 struct AXActionData; |
| 57 struct AXNodeData; | 57 struct AXNodeData; |
| 58 class Compositor; | 58 class Compositor; |
| 59 class InputMethod; | 59 class InputMethod; |
| 60 class Layer; | 60 class Layer; |
| 61 class NativeTheme; | 61 class NativeTheme; |
| 62 class PaintContext; | 62 class PaintContext; |
| 63 class TextInputClient; | |
| 64 class Texture; | |
| 65 class ThemeProvider; | 63 class ThemeProvider; |
| 66 } | 64 } |
| 67 | 65 |
| 68 namespace views { | 66 namespace views { |
| 69 | 67 |
| 70 class Background; | 68 class Background; |
| 71 class Border; | 69 class Border; |
| 72 class ContextMenuController; | 70 class ContextMenuController; |
| 73 class DragController; | 71 class DragController; |
| 74 class FocusManager; | 72 class FocusManager; |
| (...skipping 1501 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1576 // Belongs to this view, but it's reference-counted on some platforms | 1574 // Belongs to this view, but it's reference-counted on some platforms |
| 1577 // so we can't use a scoped_ptr. It's dereferenced in the destructor. | 1575 // so we can't use a scoped_ptr. It's dereferenced in the destructor. |
| 1578 NativeViewAccessibility* native_view_accessibility_; | 1576 NativeViewAccessibility* native_view_accessibility_; |
| 1579 | 1577 |
| 1580 DISALLOW_COPY_AND_ASSIGN(View); | 1578 DISALLOW_COPY_AND_ASSIGN(View); |
| 1581 }; | 1579 }; |
| 1582 | 1580 |
| 1583 } // namespace views | 1581 } // namespace views |
| 1584 | 1582 |
| 1585 #endif // UI_VIEWS_VIEW_H_ | 1583 #endif // UI_VIEWS_VIEW_H_ |
| OLD | NEW |