| 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_PRIVATE_H_ | 5 #ifndef UI_VIEWS_WIDGET_NATIVE_WIDGET_PRIVATE_H_ |
| 6 #define UI_VIEWS_WIDGET_NATIVE_WIDGET_PRIVATE_H_ | 6 #define UI_VIEWS_WIDGET_NATIVE_WIDGET_PRIVATE_H_ |
| 7 | 7 |
| 8 #include "base/strings/string16.h" | 8 #include "base/strings/string16.h" |
| 9 #include "ui/base/ui_base_types.h" | 9 #include "ui/base/ui_base_types.h" |
| 10 #include "ui/gfx/native_widget_types.h" | 10 #include "ui/gfx/native_widget_types.h" |
| 11 #include "ui/views/widget/native_widget.h" | 11 #include "ui/views/widget/native_widget.h" |
| 12 | 12 |
| 13 namespace gfx { | 13 namespace gfx { |
| 14 class FontList; | 14 class FontList; |
| 15 class ImageSkia; | 15 class ImageSkia; |
| 16 class Rect; | 16 class Rect; |
| 17 } | 17 } |
| 18 | 18 |
| 19 namespace ui { | 19 namespace ui { |
| 20 class InputMethod; | 20 class InputMethod; |
| 21 class NativeTheme; | 21 class NativeTheme; |
| 22 class OSExchangeData; | 22 class OSExchangeData; |
| 23 } | 23 } |
| 24 | 24 |
| 25 namespace views { | 25 namespace views { |
| 26 class InputMethod; | 26 class InputMethod; |
| 27 class InputMethodDelegate; | |
| 28 class TooltipManager; | 27 class TooltipManager; |
| 29 namespace internal { | 28 namespace internal { |
| 29 class InputMethodDelegate; |
| 30 | 30 |
| 31 //////////////////////////////////////////////////////////////////////////////// | 31 //////////////////////////////////////////////////////////////////////////////// |
| 32 // NativeWidgetPrivate interface | 32 // NativeWidgetPrivate interface |
| 33 // | 33 // |
| 34 // A NativeWidget subclass internal to views that provides Widget a conduit for | 34 // A NativeWidget subclass internal to views that provides Widget a conduit for |
| 35 // communication with a backend-specific native widget implementation. | 35 // communication with a backend-specific native widget implementation. |
| 36 // | 36 // |
| 37 // Many of the methods here are pass-thrus for Widget, and as such there is no | 37 // Many of the methods here are pass-thrus for Widget, and as such there is no |
| 38 // documentation for them here. In that case, see methods of the same name in | 38 // documentation for them here. In that case, see methods of the same name in |
| 39 // widget.h. | 39 // widget.h. |
| (...skipping 192 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 232 virtual void RepostNativeEvent(gfx::NativeEvent native_event) = 0; | 232 virtual void RepostNativeEvent(gfx::NativeEvent native_event) = 0; |
| 233 | 233 |
| 234 // Overridden from NativeWidget: | 234 // Overridden from NativeWidget: |
| 235 virtual internal::NativeWidgetPrivate* AsNativeWidgetPrivate() OVERRIDE; | 235 virtual internal::NativeWidgetPrivate* AsNativeWidgetPrivate() OVERRIDE; |
| 236 }; | 236 }; |
| 237 | 237 |
| 238 } // namespace internal | 238 } // namespace internal |
| 239 } // namespace views | 239 } // namespace views |
| 240 | 240 |
| 241 #endif // UI_VIEWS_WIDGET_NATIVE_WIDGET_PRIVATE_H_ | 241 #endif // UI_VIEWS_WIDGET_NATIVE_WIDGET_PRIVATE_H_ |
| OLD | NEW |