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

Unified Diff: content/public/test/test_renderer_host.cc

Issue 1136553005: Revert of Classify navigations without page id in parallel to the existing classifier. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 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 | « content/public/test/test_renderer_host.h ('k') | content/public/test/web_contents_tester.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/public/test/test_renderer_host.cc
diff --git a/content/public/test/test_renderer_host.cc b/content/public/test/test_renderer_host.cc
index b233e8ad43a42f4d598942fe2b914165e6eea25e..fea075da9a30da9d62625ed629851df327e81d05 100644
--- a/content/public/test/test_renderer_host.cc
+++ b/content/public/test/test_renderer_host.cc
@@ -163,19 +163,16 @@
NavigationEntry* entry = controller().GetLastCommittedEntry();
DCHECK(entry);
controller().Reload(false);
- RenderFrameHostTester::For(main_rfh())
- ->SendNavigateWithTransition(entry->GetPageID(), entry->GetUniqueID(),
- false, entry->GetURL(),
- ui::PAGE_TRANSITION_RELOAD);
+ RenderFrameHostTester::For(main_rfh())->SendNavigateWithTransition(
+ entry->GetPageID(), entry->GetURL(), ui::PAGE_TRANSITION_RELOAD);
}
void RenderViewHostTestHarness::FailedReload() {
NavigationEntry* entry = controller().GetLastCommittedEntry();
DCHECK(entry);
controller().Reload(false);
- RenderFrameHostTester::For(main_rfh())
- ->SendFailedNavigate(entry->GetPageID(), entry->GetUniqueID(), false,
- entry->GetURL());
+ RenderFrameHostTester::For(main_rfh())->SendFailedNavigate(entry->GetPageID(),
+ entry->GetURL());
}
void RenderViewHostTestHarness::SetUp() {
« no previous file with comments | « content/public/test/test_renderer_host.h ('k') | content/public/test/web_contents_tester.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698