Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(867)

Side by Side Diff: content/renderer/render_widget.h

Issue 2537513006: content: Cleanup class/struct forward declarations (Closed)
Patch Set: Created 4 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « content/renderer/render_view_impl.h ('k') | content/renderer/render_widget_owner_delegate.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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_
OLDNEW
« no previous file with comments | « content/renderer/render_view_impl.h ('k') | content/renderer/render_widget_owner_delegate.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698