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

Side by Side Diff: content/browser/renderer_host/test_render_view_host.cc

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 #include "content/browser/renderer_host/test_render_view_host.h" 5 #include "content/browser/renderer_host/test_render_view_host.h"
6 6
7 #include "content/browser/dom_storage/dom_storage_context_wrapper.h" 7 #include "content/browser/dom_storage/dom_storage_context_wrapper.h"
8 #include "content/browser/dom_storage/session_storage_namespace_impl.h" 8 #include "content/browser/dom_storage/session_storage_namespace_impl.h"
9 #include "content/browser/renderer_host/test_backing_store.h" 9 #include "content/browser/renderer_host/test_backing_store.h"
10 #include "content/browser/site_instance_impl.h" 10 #include "content/browser/site_instance_impl.h"
(...skipping 229 matching lines...) Expand 10 before | Expand all | Expand 10 after
240 RenderViewHostDelegate* delegate, 240 RenderViewHostDelegate* delegate,
241 RenderWidgetHostDelegate* widget_delegate, 241 RenderWidgetHostDelegate* widget_delegate,
242 int routing_id, 242 int routing_id,
243 int main_frame_routing_id, 243 int main_frame_routing_id,
244 bool swapped_out) 244 bool swapped_out)
245 : RenderViewHostImpl(instance, 245 : RenderViewHostImpl(instance,
246 delegate, 246 delegate,
247 widget_delegate, 247 widget_delegate,
248 routing_id, 248 routing_id,
249 main_frame_routing_id, 249 main_frame_routing_id,
250 swapped_out), 250 swapped_out,
251 true /* visible */),
sky 2013/08/19 20:21:47 Using enums also means you don't need comments lik
251 render_view_created_(false), 252 render_view_created_(false),
252 delete_counter_(NULL), 253 delete_counter_(NULL),
253 simulate_fetch_via_proxy_(false), 254 simulate_fetch_via_proxy_(false),
254 simulate_history_list_was_cleared_(false), 255 simulate_history_list_was_cleared_(false),
255 contents_mime_type_("text/html"), 256 contents_mime_type_("text/html"),
256 opener_route_id_(MSG_ROUTING_NONE) { 257 opener_route_id_(MSG_ROUTING_NONE) {
257 // TestRenderWidgetHostView installs itself into this->view_ in its 258 // TestRenderWidgetHostView installs itself into this->view_ in its
258 // constructor, and deletes itself when TestRenderWidgetHostView::Destroy() is 259 // constructor, and deletes itself when TestRenderWidgetHostView::Destroy() is
259 // called. 260 // called.
260 new TestRenderWidgetHostView(this); 261 new TestRenderWidgetHostView(this);
(...skipping 158 matching lines...) Expand 10 before | Expand all | Expand 10 after
419 420
420 TestRenderViewHost* RenderViewHostImplTestHarness::active_test_rvh() { 421 TestRenderViewHost* RenderViewHostImplTestHarness::active_test_rvh() {
421 return static_cast<TestRenderViewHost*>(active_rvh()); 422 return static_cast<TestRenderViewHost*>(active_rvh());
422 } 423 }
423 424
424 TestWebContents* RenderViewHostImplTestHarness::contents() { 425 TestWebContents* RenderViewHostImplTestHarness::contents() {
425 return static_cast<TestWebContents*>(web_contents()); 426 return static_cast<TestWebContents*>(web_contents());
426 } 427 }
427 428
428 } // namespace content 429 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698