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> |
(...skipping 21 matching lines...) Expand all Loading... |
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) |
38 class AcceleratedSurfaceContainerLinux; | 38 class AcceleratedSurfaceContainerLinux; |
39 #endif | 39 #endif |
40 | 40 |
41 class RenderWidgetHost; | 41 class RenderWidgetHost; |
42 struct NativeWebKeyboardEvent; | |
43 | 42 |
44 // ----------------------------------------------------------------------------- | 43 // ----------------------------------------------------------------------------- |
45 // See comments in render_widget_host_view.h about this class and its members. | 44 // See comments in render_widget_host_view.h about this class and its members. |
46 // ----------------------------------------------------------------------------- | 45 // ----------------------------------------------------------------------------- |
47 class RenderWidgetHostViewViews : public RenderWidgetHostView, | 46 class RenderWidgetHostViewViews : public RenderWidgetHostView, |
48 #if defined(UI_COMPOSITOR_IMAGE_TRANSPORT) | 47 #if defined(UI_COMPOSITOR_IMAGE_TRANSPORT) |
49 public ui::CompositorObserver, | 48 public ui::CompositorObserver, |
50 #endif | 49 #endif |
51 public views::TouchSelectionClientView, | 50 public views::TouchSelectionClientView, |
52 public ui::TextInputClient, | 51 public ui::TextInputClient, |
(...skipping 259 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
312 | 311 |
313 #if defined(UI_COMPOSITOR_IMAGE_TRANSPORT) | 312 #if defined(UI_COMPOSITOR_IMAGE_TRANSPORT) |
314 std::map<uint64, scoped_refptr<AcceleratedSurfaceContainerLinux> > | 313 std::map<uint64, scoped_refptr<AcceleratedSurfaceContainerLinux> > |
315 accelerated_surface_containers_; | 314 accelerated_surface_containers_; |
316 #endif | 315 #endif |
317 | 316 |
318 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewViews); | 317 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewViews); |
319 }; | 318 }; |
320 | 319 |
321 #endif // CHROME_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_VIEWS_H_ | 320 #endif // CHROME_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_VIEWS_H_ |
OLD | NEW |