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

Unified Diff: components/visitedlink/test/visitedlink_unittest.cc

Issue 281663002: Create RenderFrameProxyHost at time of swap-out instead of commit. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix IPC_BEGIN_MESSAGE_MAP macro, as _EX version doesn't exist anymore. Created 6 years, 7 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | content/browser/frame_host/interstitial_page_impl.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/visitedlink/test/visitedlink_unittest.cc
diff --git a/components/visitedlink/test/visitedlink_unittest.cc b/components/visitedlink/test/visitedlink_unittest.cc
index a631785d25e58e4c0e8f1dfac891f7b37a36d015..63643187d067092540c6c65010218fdfd1f2dd4c 100644
--- a/components/visitedlink/test/visitedlink_unittest.cc
+++ b/components/visitedlink/test/visitedlink_unittest.cc
@@ -684,9 +684,8 @@ TEST_F(VisitedLinkEventsTest, Coalescense) {
}
TEST_F(VisitedLinkEventsTest, Basics) {
- RenderViewHostTester::For(rvh())->CreateRenderView(base::string16(),
- MSG_ROUTING_NONE,
- -1, false);
+ RenderViewHostTester::For(rvh())->CreateRenderView(
+ base::string16(), MSG_ROUTING_NONE, MSG_ROUTING_NONE, -1, false);
// Add a few URLs.
master()->AddURL(GURL("http://acidtests.org/"));
@@ -709,9 +708,8 @@ TEST_F(VisitedLinkEventsTest, Basics) {
}
TEST_F(VisitedLinkEventsTest, TabVisibility) {
- RenderViewHostTester::For(rvh())->CreateRenderView(base::string16(),
- MSG_ROUTING_NONE,
- -1, false);
+ RenderViewHostTester::For(rvh())->CreateRenderView(
+ base::string16(), MSG_ROUTING_NONE, MSG_ROUTING_NONE, -1, false);
// Simulate tab becoming inactive.
RenderViewHostTester::For(rvh())->SimulateWasHidden();
« no previous file with comments | « no previous file | content/browser/frame_host/interstitial_page_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698