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

Unified Diff: content/public/test/web_contents_tester.h

Issue 1002803002: Classify navigations without page id in parallel to the existing classifier. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase again Created 5 years, 8 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
Index: content/public/test/web_contents_tester.h
diff --git a/content/public/test/web_contents_tester.h b/content/public/test/web_contents_tester.h
index a96d86deeb1064e3acb56c54bca1956320a2b773..35513b6043927e2423407cddd8b70e970afff942 100644
--- a/content/public/test/web_contents_tester.h
+++ b/content/public/test/web_contents_tester.h
@@ -80,15 +80,18 @@ class WebContentsTester {
virtual void TestDidNavigate(RenderFrameHost* render_frame_host,
int page_id,
+ int nav_entry_id,
+ bool did_create_new_entry,
const GURL& url,
ui::PageTransition transition) = 0;
- virtual void TestDidNavigateWithReferrer(
- RenderFrameHost* render_frame_host,
- int page_id,
- const GURL& url,
- const Referrer& referrer,
- ui::PageTransition transition) = 0;
+ virtual void TestDidNavigateWithReferrer(RenderFrameHost* render_frame_host,
+ int page_id,
+ int nav_entry_id,
+ bool did_create_new_entry,
+ const GURL& url,
+ const Referrer& referrer,
+ ui::PageTransition transition) = 0;
};
} // namespace content

Powered by Google App Engine
This is Rietveld 408576698