| 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_RENDERER_RENDER_WIDGET_H_ | 5 #ifndef CONTENT_RENDERER_RENDER_WIDGET_H_ |
| 6 #define CONTENT_RENDERER_RENDER_WIDGET_H_ | 6 #define CONTENT_RENDERER_RENDER_WIDGET_H_ |
| 7 | 7 |
| 8 #include <stddef.h> | 8 #include <stddef.h> |
| 9 #include <stdint.h> | 9 #include <stdint.h> |
| 10 | 10 |
| (...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 53 #include "ui/base/ui_base_types.h" | 53 #include "ui/base/ui_base_types.h" |
| 54 #include "ui/gfx/geometry/rect.h" | 54 #include "ui/gfx/geometry/rect.h" |
| 55 #include "ui/gfx/geometry/vector2d_f.h" | 55 #include "ui/gfx/geometry/vector2d_f.h" |
| 56 #include "ui/gfx/native_widget_types.h" | 56 #include "ui/gfx/native_widget_types.h" |
| 57 #include "ui/gfx/range/range.h" | 57 #include "ui/gfx/range/range.h" |
| 58 #include "ui/surface/transport_dib.h" | 58 #include "ui/surface/transport_dib.h" |
| 59 | 59 |
| 60 class GURL; | 60 class GURL; |
| 61 | 61 |
| 62 namespace IPC { | 62 namespace IPC { |
| 63 class SyncMessage; | |
| 64 class SyncMessageFilter; | 63 class SyncMessageFilter; |
| 65 } | 64 } |
| 66 | 65 |
| 67 namespace blink { | 66 namespace blink { |
| 68 namespace scheduler { | 67 namespace scheduler { |
| 69 class RenderWidgetSchedulingState; | 68 class RenderWidgetSchedulingState; |
| 70 } | 69 } |
| 71 struct WebDeviceEmulationParams; | 70 struct WebDeviceEmulationParams; |
| 72 class WebDragData; | 71 class WebDragData; |
| 73 class WebFrameWidget; | 72 class WebFrameWidget; |
| 74 class WebGestureEvent; | 73 class WebGestureEvent; |
| 75 class WebImage; | 74 class WebImage; |
| 76 class WebInputMethodController; | 75 class WebInputMethodController; |
| 77 class WebLocalFrame; | 76 class WebLocalFrame; |
| 78 class WebMouseEvent; | 77 class WebMouseEvent; |
| 79 class WebNode; | 78 class WebNode; |
| 80 struct WebPoint; | 79 struct WebPoint; |
| 81 } | 80 } |
| 82 | 81 |
| 83 namespace cc { | 82 namespace cc { |
| 84 class CompositorFrameSink; | 83 class CompositorFrameSink; |
| 85 class FrameSinkId; | |
| 86 class SwapPromise; | 84 class SwapPromise; |
| 87 } | 85 } |
| 88 | 86 |
| 89 namespace gfx { | 87 namespace gfx { |
| 90 class Range; | 88 class Range; |
| 91 } | 89 } |
| 92 | 90 |
| 93 namespace ui { | 91 namespace ui { |
| 94 struct DidOverscrollParams; | 92 struct DidOverscrollParams; |
| 95 } | 93 } |
| (...skipping 763 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 859 // being handled. If the current event results in starting a drag/drop | 857 // being handled. If the current event results in starting a drag/drop |
| 860 // session, this info is sent to the browser along with other drag/drop info. | 858 // session, this info is sent to the browser along with other drag/drop info. |
| 861 DragEventSourceInfo possible_drag_event_info_; | 859 DragEventSourceInfo possible_drag_event_info_; |
| 862 | 860 |
| 863 DISALLOW_COPY_AND_ASSIGN(RenderWidget); | 861 DISALLOW_COPY_AND_ASSIGN(RenderWidget); |
| 864 }; | 862 }; |
| 865 | 863 |
| 866 } // namespace content | 864 } // namespace content |
| 867 | 865 |
| 868 #endif // CONTENT_RENDERER_RENDER_WIDGET_H_ | 866 #endif // CONTENT_RENDERER_RENDER_WIDGET_H_ |
| OLD | NEW |