OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 CHROME_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_VIEWS_H_ | 5 #ifndef CHROME_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_VIEWS_H_ |
6 #define CHROME_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_VIEWS_H_ | 6 #define CHROME_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_VIEWS_H_ |
7 #pragma once | 7 #pragma once |
8 | 8 |
9 #include <map> | 9 #include <map> |
10 #include <string> | 10 #include <string> |
11 #include <vector> | 11 #include <vector> |
12 | 12 |
13 #include "base/compiler_specific.h" | 13 #include "base/compiler_specific.h" |
14 #include "base/memory/ref_counted.h" | 14 #include "base/memory/ref_counted.h" |
15 #include "base/memory/weak_ptr.h" | 15 #include "base/memory/weak_ptr.h" |
16 #include "base/string16.h" | 16 #include "base/string16.h" |
17 #include "base/time.h" | 17 #include "base/time.h" |
18 #include "content/browser/renderer_host/render_widget_host_view.h" | 18 #include "content/browser/renderer_host/render_widget_host_view.h" |
19 #include "content/public/browser/notification_observer.h" | 19 #include "content/public/browser/notification_observer.h" |
20 #include "content/public/browser/notification_registrar.h" | 20 #include "content/public/browser/notification_registrar.h" |
21 #include "third_party/WebKit/Source/WebKit/chromium/public/WebInputEvent.h" | 21 #include "third_party/WebKit/Source/WebKit/chromium/public/WebInputEvent.h" |
22 #include "ui/base/ime/text_input_client.h" | 22 #include "ui/base/ime/text_input_client.h" |
23 #include "ui/gfx/compositor/compositor_observer.h" | 23 #include "ui/gfx/compositor/compositor_observer.h" |
24 #include "ui/gfx/native_widget_types.h" | 24 #include "ui/gfx/native_widget_types.h" |
| 25 #include "ui/views/events/event.h" |
25 #include "ui/views/touchui/touch_selection_controller.h" | 26 #include "ui/views/touchui/touch_selection_controller.h" |
26 #include "views/controls/native/native_view_host.h" | 27 #include "views/controls/native/native_view_host.h" |
27 #include "views/events/event.h" | |
28 #include "views/view.h" | 28 #include "views/view.h" |
29 #include "webkit/glue/webcursor.h" | 29 #include "webkit/glue/webcursor.h" |
30 | 30 |
31 #if defined(TOUCH_UI) | 31 #if defined(TOUCH_UI) |
32 namespace ui { | 32 namespace ui { |
33 enum TouchStatus; | 33 enum TouchStatus; |
34 } | 34 } |
35 #endif | 35 #endif |
36 | 36 |
37 #if defined(UI_COMPOSITOR_IMAGE_TRANSPORT) | 37 #if defined(UI_COMPOSITOR_IMAGE_TRANSPORT) |
(...skipping 272 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
310 | 310 |
311 #if defined(UI_COMPOSITOR_IMAGE_TRANSPORT) | 311 #if defined(UI_COMPOSITOR_IMAGE_TRANSPORT) |
312 std::map<uint64, scoped_refptr<AcceleratedSurfaceContainerLinux> > | 312 std::map<uint64, scoped_refptr<AcceleratedSurfaceContainerLinux> > |
313 accelerated_surface_containers_; | 313 accelerated_surface_containers_; |
314 #endif | 314 #endif |
315 | 315 |
316 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewViews); | 316 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewViews); |
317 }; | 317 }; |
318 | 318 |
319 #endif // CHROME_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_VIEWS_H_ | 319 #endif // CHROME_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_VIEWS_H_ |
OLD | NEW |