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_VIEW_IMPL_H_ | 5 #ifndef CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ |
6 #define CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ | 6 #define CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ |
7 | 7 |
8 #include <deque> | 8 #include <deque> |
9 #include <map> | 9 #include <map> |
10 #include <set> | 10 #include <set> |
(...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
113 | 113 |
114 #if defined(OS_ANDROID) | 114 #if defined(OS_ANDROID) |
115 class WebHitTestResult; | 115 class WebHitTestResult; |
116 #endif | 116 #endif |
117 } // namespace blink | 117 } // namespace blink |
118 | 118 |
119 namespace ui { | 119 namespace ui { |
120 struct SelectedFileInfo; | 120 struct SelectedFileInfo; |
121 } | 121 } |
122 | 122 |
123 namespace webkit_glue { | |
124 class WebURLResponseExtraDataImpl; | |
125 } | |
126 | |
127 namespace content { | 123 namespace content { |
128 class BrowserPluginManager; | 124 class BrowserPluginManager; |
129 class DevToolsAgent; | 125 class DevToolsAgent; |
130 class DocumentState; | 126 class DocumentState; |
131 class ExternalPopupMenu; | 127 class ExternalPopupMenu; |
132 class FaviconHelper; | 128 class FaviconHelper; |
133 class HistoryController; | 129 class HistoryController; |
134 class HistoryEntry; | 130 class HistoryEntry; |
135 class ImageResourceFetcher; | 131 class ImageResourceFetcher; |
136 class MouseLockDispatcher; | 132 class MouseLockDispatcher; |
(...skipping 1027 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1164 // use the Observer interface to filter IPC messages and receive frame change | 1160 // use the Observer interface to filter IPC messages and receive frame change |
1165 // notifications. | 1161 // notifications. |
1166 // --------------------------------------------------------------------------- | 1162 // --------------------------------------------------------------------------- |
1167 | 1163 |
1168 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); | 1164 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); |
1169 }; | 1165 }; |
1170 | 1166 |
1171 } // namespace content | 1167 } // namespace content |
1172 | 1168 |
1173 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ | 1169 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ |
OLD | NEW |