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 176 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
187 const RendererPreferences& renderer_prefs, | 187 const RendererPreferences& renderer_prefs, |
188 const WebPreferences& webkit_prefs, | 188 const WebPreferences& webkit_prefs, |
189 int32 routing_id, | 189 int32 routing_id, |
190 int32 main_frame_routing_id, | 190 int32 main_frame_routing_id, |
191 int32 surface_id, | 191 int32 surface_id, |
192 int64 session_storage_namespace_id, | 192 int64 session_storage_namespace_id, |
193 const base::string16& frame_name, | 193 const base::string16& frame_name, |
194 bool is_renderer_created, | 194 bool is_renderer_created, |
195 bool swapped_out, | 195 bool swapped_out, |
196 bool hidden, | 196 bool hidden, |
| 197 bool never_visible, |
197 int32 next_page_id, | 198 int32 next_page_id, |
198 const blink::WebScreenInfo& screen_info, | 199 const blink::WebScreenInfo& screen_info, |
199 AccessibilityMode accessibility_mode); | 200 AccessibilityMode accessibility_mode); |
200 | 201 |
201 // Used by content_layouttest_support to hook into the creation of | 202 // Used by content_layouttest_support to hook into the creation of |
202 // RenderViewImpls. | 203 // RenderViewImpls. |
203 static void InstallCreateHook( | 204 static void InstallCreateHook( |
204 RenderViewImpl* (*create_render_view_impl)(RenderViewImplParams*)); | 205 RenderViewImpl* (*create_render_view_impl)(RenderViewImplParams*)); |
205 | 206 |
206 // Returns the RenderViewImpl containing the given WebView. | 207 // Returns the RenderViewImpl containing the given WebView. |
(...skipping 1122 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1329 // use the Observer interface to filter IPC messages and receive frame change | 1330 // use the Observer interface to filter IPC messages and receive frame change |
1330 // notifications. | 1331 // notifications. |
1331 // --------------------------------------------------------------------------- | 1332 // --------------------------------------------------------------------------- |
1332 | 1333 |
1333 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); | 1334 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); |
1334 }; | 1335 }; |
1335 | 1336 |
1336 } // namespace content | 1337 } // namespace content |
1337 | 1338 |
1338 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ | 1339 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ |
OLD | NEW |