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

Unified Diff: content/test/test_render_view_host.cc

Issue 562603002: Move PageTransition from //content/public/common to //ui/base (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 6 years, 3 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/test/test_render_view_host.h ('k') | content/test/test_web_contents.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/test/test_render_view_host.cc
diff --git a/content/test/test_render_view_host.cc b/content/test/test_render_view_host.cc
index 1f54c8e7d7597e7597e683c7845bde242dd5fc0a..b243896362e5b5bc2f00518deeb4dd925e7ae8f3 100644
--- a/content/test/test_render_view_host.cc
+++ b/content/test/test_render_view_host.cc
@@ -27,7 +27,7 @@ namespace content {
void InitNavigateParams(FrameHostMsg_DidCommitProvisionalLoad_Params* params,
int page_id,
const GURL& url,
- PageTransition transition) {
+ ui::PageTransition transition) {
params->page_id = page_id;
params->url = url;
params->referrer = Referrer();
@@ -272,7 +272,7 @@ void TestRenderViewHost::SendFailedNavigate(int page_id, const GURL& url) {
void TestRenderViewHost::SendNavigateWithTransition(
int page_id,
const GURL& url,
- PageTransition transition) {
+ ui::PageTransition transition) {
main_render_frame_host_->SendNavigateWithTransition(page_id, url, transition);
}
@@ -299,7 +299,7 @@ void TestRenderViewHost::SendNavigateWithParams(
void TestRenderViewHost::SendNavigateWithTransitionAndResponseCode(
int page_id,
const GURL& url,
- PageTransition transition,
+ ui::PageTransition transition,
int response_code) {
main_render_frame_host_->SendNavigateWithTransitionAndResponseCode(
page_id, url, transition, response_code);
@@ -308,7 +308,7 @@ void TestRenderViewHost::SendNavigateWithTransitionAndResponseCode(
void TestRenderViewHost::SendNavigateWithParameters(
int page_id,
const GURL& url,
- PageTransition transition,
+ ui::PageTransition transition,
const GURL& original_request_url,
int response_code,
const base::FilePath* file_path_for_history_item) {
« no previous file with comments | « content/test/test_render_view_host.h ('k') | content/test/test_web_contents.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698