| 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_VIEWS_DELEGATE_H_ | 5 #ifndef UI_VIEWS_VIEWS_DELEGATE_H_ |
| 6 #define UI_VIEWS_VIEWS_DELEGATE_H_ | 6 #define UI_VIEWS_VIEWS_DELEGATE_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 | 9 |
| 10 #if defined(OS_WIN) | 10 #if defined(OS_WIN) |
| 11 #include <windows.h> | 11 #include <windows.h> |
| 12 #endif | 12 #endif |
| 13 | 13 |
| 14 #include "base/callback.h" | 14 #include "base/callback.h" |
| 15 #include "base/location.h" | 15 #include "base/location.h" |
| 16 #include "base/macros.h" | 16 #include "base/macros.h" |
| 17 #include "base/strings/string16.h" | 17 #include "base/strings/string16.h" |
| 18 #include "build/build_config.h" | 18 #include "build/build_config.h" |
| 19 #include "ui/accessibility/ax_enums.h" | |
| 20 #include "ui/base/ui_base_types.h" | 19 #include "ui/base/ui_base_types.h" |
| 21 #include "ui/gfx/native_widget_types.h" | 20 #include "ui/gfx/native_widget_types.h" |
| 22 #include "ui/views/views_export.h" | 21 #include "ui/views/views_export.h" |
| 23 #include "ui/views/widget/widget.h" | 22 #include "ui/views/widget/widget.h" |
| 24 | 23 |
| 25 namespace base { | 24 namespace base { |
| 26 class TaskRunner; | 25 class TaskRunner; |
| 27 class TimeDelta; | 26 class TimeDelta; |
| 28 } | 27 } |
| 29 | 28 |
| 30 namespace content { | 29 namespace content { |
| 31 class WebContents; | 30 class WebContents; |
| 32 class BrowserContext; | 31 class BrowserContext; |
| 33 class SiteInstance; | 32 class SiteInstance; |
| 34 } | 33 } |
| 35 | 34 |
| 36 namespace gfx { | 35 namespace gfx { |
| 37 class ImageSkia; | 36 class ImageSkia; |
| 38 class Rect; | 37 class Rect; |
| 39 } | 38 } |
| 40 | 39 |
| 41 namespace ui { | 40 namespace ui { |
| 41 enum AXEvent : int; |
| 42 class ContextFactory; | 42 class ContextFactory; |
| 43 } | 43 } |
| 44 | 44 |
| 45 namespace views { | 45 namespace views { |
| 46 | 46 |
| 47 class NativeWidget; | 47 class NativeWidget; |
| 48 class NonClientFrameView; | 48 class NonClientFrameView; |
| 49 class ViewsTouchEditingControllerFactory; | 49 class ViewsTouchEditingControllerFactory; |
| 50 class View; | 50 class View; |
| 51 class Widget; | 51 class Widget; |
| (...skipping 152 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 204 #endif | 204 #endif |
| 205 | 205 |
| 206 NativeWidgetFactory native_widget_factory_; | 206 NativeWidgetFactory native_widget_factory_; |
| 207 | 207 |
| 208 DISALLOW_COPY_AND_ASSIGN(ViewsDelegate); | 208 DISALLOW_COPY_AND_ASSIGN(ViewsDelegate); |
| 209 }; | 209 }; |
| 210 | 210 |
| 211 } // namespace views | 211 } // namespace views |
| 212 | 212 |
| 213 #endif // UI_VIEWS_VIEWS_DELEGATE_H_ | 213 #endif // UI_VIEWS_VIEWS_DELEGATE_H_ |
| OLD | NEW |