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 CONTENT_RENDERER_RENDER_VIEW_H_ | 5 #ifndef CONTENT_RENDERER_RENDER_VIEW_H_ |
6 #define CONTENT_RENDERER_RENDER_VIEW_H_ | 6 #define CONTENT_RENDERER_RENDER_VIEW_H_ |
7 #pragma once | 7 #pragma once |
8 | 8 |
9 #include <deque> | 9 #include <deque> |
10 #include <map> | 10 #include <map> |
(...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
78 struct ViewHostMsg_RunFileChooser_Params; | 78 struct ViewHostMsg_RunFileChooser_Params; |
79 struct ViewMsg_SwapOut_Params; | 79 struct ViewMsg_SwapOut_Params; |
80 struct ViewMsg_Navigate_Params; | 80 struct ViewMsg_Navigate_Params; |
81 struct ViewMsg_StopFinding_Params; | 81 struct ViewMsg_StopFinding_Params; |
82 struct WebDropData; | 82 struct WebDropData; |
83 | 83 |
84 namespace base { | 84 namespace base { |
85 class WaitableEvent; | 85 class WaitableEvent; |
86 } | 86 } |
87 | 87 |
88 namespace chrome { | |
89 class ChromeContentRendererClient; | |
90 } | |
91 | |
92 namespace gfx { | 88 namespace gfx { |
93 class Point; | 89 class Point; |
94 class Rect; | 90 class Rect; |
95 } | 91 } |
96 | 92 |
97 namespace webkit { | 93 namespace webkit { |
98 | 94 |
99 namespace npapi { | |
100 class PluginGroup; | |
101 } // namespace npapi | |
102 | |
103 namespace ppapi { | 95 namespace ppapi { |
104 class PluginInstance; | 96 class PluginInstance; |
105 class PluginModule; | 97 class PluginModule; |
106 } // namespace ppapi | 98 } // namespace ppapi |
107 | 99 |
108 } // namespace webkit | 100 } // namespace webkit |
109 | 101 |
110 namespace webkit_glue { | 102 namespace webkit_glue { |
111 struct CustomContextMenuContext; | 103 struct CustomContextMenuContext; |
112 class ImageResourceFetcher; | 104 class ImageResourceFetcher; |
(...skipping 1095 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1208 // bunch of stuff, you should probably create a helper class and put your | 1200 // bunch of stuff, you should probably create a helper class and put your |
1209 // data and methods on that to avoid bloating RenderView more. You can use | 1201 // data and methods on that to avoid bloating RenderView more. You can use |
1210 // the Observer interface to filter IPC messages and receive frame change | 1202 // the Observer interface to filter IPC messages and receive frame change |
1211 // notifications. | 1203 // notifications. |
1212 // --------------------------------------------------------------------------- | 1204 // --------------------------------------------------------------------------- |
1213 | 1205 |
1214 DISALLOW_COPY_AND_ASSIGN(RenderView); | 1206 DISALLOW_COPY_AND_ASSIGN(RenderView); |
1215 }; | 1207 }; |
1216 | 1208 |
1217 #endif // CONTENT_RENDERER_RENDER_VIEW_H_ | 1209 #endif // CONTENT_RENDERER_RENDER_VIEW_H_ |
OLD | NEW |