Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(995)

Side by Side Diff: content/renderer/render_view_impl.h

Issue 23129015: Initialize RenderWidget(Host)(View)s with correct visibility state (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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 194 matching lines...) Expand 10 before | Expand all | Expand 10 after
205 const RendererPreferences& renderer_prefs, 205 const RendererPreferences& renderer_prefs,
206 const WebPreferences& webkit_prefs, 206 const WebPreferences& webkit_prefs,
207 SharedRenderViewCounter* counter, 207 SharedRenderViewCounter* counter,
208 int32 routing_id, 208 int32 routing_id,
209 int32 main_frame_routing_id, 209 int32 main_frame_routing_id,
210 int32 surface_id, 210 int32 surface_id,
211 int64 session_storage_namespace_id, 211 int64 session_storage_namespace_id,
212 const string16& frame_name, 212 const string16& frame_name,
213 bool is_renderer_created, 213 bool is_renderer_created,
214 bool swapped_out, 214 bool swapped_out,
215 bool hidden,
215 int32 next_page_id, 216 int32 next_page_id,
216 const WebKit::WebScreenInfo& screen_info, 217 const WebKit::WebScreenInfo& screen_info,
217 AccessibilityMode accessibility_mode, 218 AccessibilityMode accessibility_mode,
218 bool allow_partial_swap); 219 bool allow_partial_swap);
219 220
220 // Used by content_layouttest_support to hook into the creation of 221 // Used by content_layouttest_support to hook into the creation of
221 // RenderViewImpls. 222 // RenderViewImpls.
222 static void InstallCreateHook( 223 static void InstallCreateHook(
223 RenderViewImpl* (*create_render_view_impl)(RenderViewImplParams*)); 224 RenderViewImpl* (*create_render_view_impl)(RenderViewImplParams*));
224 225
(...skipping 1349 matching lines...) Expand 10 before | Expand all | Expand 10 after
1574 // use the Observer interface to filter IPC messages and receive frame change 1575 // use the Observer interface to filter IPC messages and receive frame change
1575 // notifications. 1576 // notifications.
1576 // --------------------------------------------------------------------------- 1577 // ---------------------------------------------------------------------------
1577 1578
1578 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); 1579 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl);
1579 }; 1580 };
1580 1581
1581 } // namespace content 1582 } // namespace content
1582 1583
1583 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ 1584 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698