| 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 background, |
| 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 1196 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1403 // use the Observer interface to filter IPC messages and receive frame change | 1404 // use the Observer interface to filter IPC messages and receive frame change |
| 1404 // notifications. | 1405 // notifications. |
| 1405 // --------------------------------------------------------------------------- | 1406 // --------------------------------------------------------------------------- |
| 1406 | 1407 |
| 1407 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); | 1408 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); |
| 1408 }; | 1409 }; |
| 1409 | 1410 |
| 1410 } // namespace content | 1411 } // namespace content |
| 1411 | 1412 |
| 1412 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ | 1413 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ |
| OLD | NEW |