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

Unified Diff: content/browser/renderer_host/test_render_view_host.h

Issue 8253002: Move PageTransition into content namespace. While I'm touching all these files, I've also updated... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 years, 2 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/browser/renderer_host/test_render_view_host.h
===================================================================
--- content/browser/renderer_host/test_render_view_host.h (revision 105162)
+++ content/browser/renderer_host/test_render_view_host.h (working copy)
@@ -14,7 +14,7 @@
#include "content/browser/renderer_host/render_view_host.h"
#include "content/browser/renderer_host/render_view_host_factory.h"
#include "content/browser/renderer_host/render_widget_host_view.h"
-#include "content/common/page_transition_types.h"
+#include "content/public/common/page_transition_types.h"
#include "testing/gtest/include/gtest/gtest.h"
namespace content {
@@ -36,7 +36,7 @@
void InitNavigateParams(ViewHostMsg_FrameNavigate_Params* params,
int page_id,
const GURL& url,
- PageTransition::Type transition_type);
+ content::PageTransition transition_type);
// This file provides a testing framework for mocking out the RenderProcessHost
// layer. It allows you to test RenderViewHost, TabContents,
@@ -189,11 +189,11 @@
void SendNavigate(int page_id, const GURL& url);
// Calls OnMsgNavigate on the RenderViewHost with the given information,
- // including a custom PageTransition::Type. Sets the rest of the parameters
- // in the message to the "typical" values.
- // This is a helper function for simulating the most common types of loads.
+ // including a custom content::PageTransition. Sets the rest of the
+ // parameters in the message to the "typical" values. This is a helper
+ // function for simulating the most common types of loads.
void SendNavigateWithTransition(int page_id, const GURL& url,
- PageTransition::Type transition);
+ content::PageTransition transition);
// Calls OnMsgShouldCloseACK on the RenderViewHost with the given parameter.
void SendShouldCloseACK(bool proceed);
« no previous file with comments | « content/browser/renderer_host/resource_queue_unittest.cc ('k') | content/browser/renderer_host/test_render_view_host.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698