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 CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_BASE_H_ | 5 #ifndef CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_BASE_H_ |
6 #define CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_BASE_H_ | 6 #define CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_BASE_H_ |
7 | 7 |
8 #include <stddef.h> | 8 #include <stddef.h> |
9 #include <stdint.h> | 9 #include <stdint.h> |
10 | 10 |
(...skipping 11 matching lines...) Expand all Loading... |
22 #include "cc/surfaces/surface_id.h" | 22 #include "cc/surfaces/surface_id.h" |
23 #include "content/browser/renderer_host/event_with_latency_info.h" | 23 #include "content/browser/renderer_host/event_with_latency_info.h" |
24 #include "content/common/content_export.h" | 24 #include "content/common/content_export.h" |
25 #include "content/common/input/input_event_ack_state.h" | 25 #include "content/common/input/input_event_ack_state.h" |
26 #include "content/public/browser/readback_types.h" | 26 #include "content/public/browser/readback_types.h" |
27 #include "content/public/browser/render_widget_host_view.h" | 27 #include "content/public/browser/render_widget_host_view.h" |
28 #include "ipc/ipc_listener.h" | 28 #include "ipc/ipc_listener.h" |
29 #include "third_party/WebKit/public/platform/modules/screen_orientation/WebScree
nOrientationType.h" | 29 #include "third_party/WebKit/public/platform/modules/screen_orientation/WebScree
nOrientationType.h" |
30 #include "third_party/WebKit/public/web/WebPopupType.h" | 30 #include "third_party/WebKit/public/web/WebPopupType.h" |
31 #include "third_party/WebKit/public/web/WebTextDirection.h" | 31 #include "third_party/WebKit/public/web/WebTextDirection.h" |
| 32 #include "third_party/skia/include/core/SkImageInfo.h" |
32 #include "ui/base/ime/text_input_mode.h" | 33 #include "ui/base/ime/text_input_mode.h" |
33 #include "ui/base/ime/text_input_type.h" | 34 #include "ui/base/ime/text_input_type.h" |
34 #include "ui/display/display.h" | 35 #include "ui/display/display.h" |
35 #include "ui/gfx/geometry/rect.h" | 36 #include "ui/gfx/geometry/rect.h" |
36 #include "ui/gfx/native_widget_types.h" | 37 #include "ui/gfx/native_widget_types.h" |
37 #include "ui/gfx/range/range.h" | 38 #include "ui/gfx/range/range.h" |
38 #include "ui/surface/transport_dib.h" | 39 #include "ui/surface/transport_dib.h" |
39 | 40 |
40 class SkBitmap; | 41 class SkBitmap; |
41 | 42 |
(...skipping 395 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
437 base::ObserverList<RenderWidgetHostViewBaseObserver> observers_; | 438 base::ObserverList<RenderWidgetHostViewBaseObserver> observers_; |
438 | 439 |
439 base::WeakPtrFactory<RenderWidgetHostViewBase> weak_factory_; | 440 base::WeakPtrFactory<RenderWidgetHostViewBase> weak_factory_; |
440 | 441 |
441 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewBase); | 442 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewBase); |
442 }; | 443 }; |
443 | 444 |
444 } // namespace content | 445 } // namespace content |
445 | 446 |
446 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_BASE_H_ | 447 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_BASE_H_ |
OLD | NEW |