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

Side by Side Diff: content/public/test/render_view_test.cc

Issue 692973005: Pass origin information for remote frame creation. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 1 month 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
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/public/test/render_view_test.h" 5 #include "content/public/test/render_view_test.h"
6 6
7 #include "base/run_loop.h" 7 #include "base/run_loop.h"
8 #include "content/common/dom_storage/dom_storage_types.h" 8 #include "content/common/dom_storage/dom_storage_types.h"
9 #include "content/common/frame_messages.h" 9 #include "content/common/frame_messages.h"
10 #include "content/common/input_messages.h" 10 #include "content/common/input_messages.h"
(...skipping 186 matching lines...) Expand 10 before | Expand all | Expand 10 after
197 kMainFrameRouteId, 197 kMainFrameRouteId,
198 kSurfaceId, 198 kSurfaceId,
199 kInvalidSessionStorageNamespaceId, 199 kInvalidSessionStorageNamespaceId,
200 base::string16(), 200 base::string16(),
201 false, // is_renderer_created 201 false, // is_renderer_created
202 false, // swapped_out 202 false, // swapped_out
203 MSG_ROUTING_NONE, // proxy_routing_id 203 MSG_ROUTING_NONE, // proxy_routing_id
204 false, // hidden 204 false, // hidden
205 false, // never_visible 205 false, // never_visible
206 1, // next_page_id 206 1, // next_page_id
207 blink::WebScreenInfo()); 207 blink::WebScreenInfo(),
208 FrameReplicationState()); // remote_frame_state
Charlie Reis 2014/11/13 18:00:58 nit: The comment probably isn't necessary. It's m
alexmos 2014/11/18 18:25:32 Done.
208 view->AddRef(); 209 view->AddRef();
209 view_ = view; 210 view_ = view;
210 } 211 }
211 212
212 void RenderViewTest::TearDown() { 213 void RenderViewTest::TearDown() {
213 // Try very hard to collect garbage before shutting down. 214 // Try very hard to collect garbage before shutting down.
214 // "5" was chosen following http://crbug.com/46571#c9 215 // "5" was chosen following http://crbug.com/46571#c9
215 const int kGCIterations = 5; 216 const int kGCIterations = 5;
216 for (int i = 0; i < kGCIterations; i++) 217 for (int i = 0; i < kGCIterations; i++)
217 GetMainFrame()->collectGarbage(); 218 GetMainFrame()->collectGarbage();
(...skipping 210 matching lines...) Expand 10 before | Expand all | Expand 10 after
428 FrameMsg_Navigate navigate_message(impl->GetMainRenderFrame()->GetRoutingID(), 429 FrameMsg_Navigate navigate_message(impl->GetMainRenderFrame()->GetRoutingID(),
429 navigate_params); 430 navigate_params);
430 impl->GetMainRenderFrame()->OnMessageReceived(navigate_message); 431 impl->GetMainRenderFrame()->OnMessageReceived(navigate_message);
431 432
432 // The load actually happens asynchronously, so we pump messages to process 433 // The load actually happens asynchronously, so we pump messages to process
433 // the pending continuation. 434 // the pending continuation.
434 FrameLoadWaiter(view_->GetMainRenderFrame()).Wait(); 435 FrameLoadWaiter(view_->GetMainRenderFrame()).Wait();
435 } 436 }
436 437
437 } // namespace content 438 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698