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 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
81 struct WebDropData; | 81 struct WebDropData; |
82 | 82 |
83 namespace base { | 83 namespace base { |
84 class WaitableEvent; | 84 class WaitableEvent; |
85 } // namespace base | 85 } // namespace base |
86 | 86 |
87 namespace content { | 87 namespace content { |
88 class P2PSocketDispatcher; | 88 class P2PSocketDispatcher; |
89 } // namespace content | 89 } // namespace content |
90 | 90 |
91 namespace chrome { | |
92 class ChromeContentRendererClient; | |
93 } // namespace chrome | |
94 | |
95 namespace gfx { | 91 namespace gfx { |
96 class Point; | 92 class Point; |
97 class Rect; | 93 class Rect; |
98 } // namespace gfx | 94 } // namespace gfx |
99 | 95 |
100 namespace webkit { | 96 namespace webkit { |
101 | 97 |
102 namespace npapi { | |
103 class PluginGroup; | |
104 } // namespace npapi | |
105 | |
106 namespace ppapi { | 98 namespace ppapi { |
107 class PluginInstance; | 99 class PluginInstance; |
108 class PluginModule; | 100 class PluginModule; |
109 } // namespace ppapi | 101 } // namespace ppapi |
110 | 102 |
111 } // namespace webkit | 103 } // namespace webkit |
112 | 104 |
113 namespace webkit_glue { | 105 namespace webkit_glue { |
114 struct CustomContextMenuContext; | 106 struct CustomContextMenuContext; |
115 class ImageResourceFetcher; | 107 class ImageResourceFetcher; |
(...skipping 1119 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1235 // bunch of stuff, you should probably create a helper class and put your | 1227 // bunch of stuff, you should probably create a helper class and put your |
1236 // data and methods on that to avoid bloating RenderView more. You can use | 1228 // data and methods on that to avoid bloating RenderView more. You can use |
1237 // the Observer interface to filter IPC messages and receive frame change | 1229 // the Observer interface to filter IPC messages and receive frame change |
1238 // notifications. | 1230 // notifications. |
1239 // --------------------------------------------------------------------------- | 1231 // --------------------------------------------------------------------------- |
1240 | 1232 |
1241 DISALLOW_COPY_AND_ASSIGN(RenderView); | 1233 DISALLOW_COPY_AND_ASSIGN(RenderView); |
1242 }; | 1234 }; |
1243 | 1235 |
1244 #endif // CONTENT_RENDERER_RENDER_VIEW_H_ | 1236 #endif // CONTENT_RENDERER_RENDER_VIEW_H_ |
OLD | NEW |