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

Unified Diff: chrome/browser/safe_browsing/client_side_detection_host_unittest.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
Index: chrome/browser/safe_browsing/client_side_detection_host_unittest.cc
diff --git a/chrome/browser/safe_browsing/client_side_detection_host_unittest.cc b/chrome/browser/safe_browsing/client_side_detection_host_unittest.cc
index 20590b5966bb5f2788c8891815f50ed01b34c09a..7ff86627bced5dcb649d94e5d4d01417aa7d768a 100644
--- a/chrome/browser/safe_browsing/client_side_detection_host_unittest.cc
+++ b/chrome/browser/safe_browsing/client_side_detection_host_unittest.cc
@@ -380,7 +380,7 @@ class ClientSideDetectionHostTest : public ChromeRenderViewHostTestHarness {
void NavigateWithSBHitAndCommit(const GURL& url) {
// Create a pending navigation.
controller().LoadURL(
- url, content::Referrer(), content::PAGE_TRANSITION_LINK, std::string());
+ url, content::Referrer(), ui::PAGE_TRANSITION_LINK, std::string());
ASSERT_TRUE(pending_rvh());
if (web_contents()->GetRenderViewHost()->GetProcess()->GetID() ==
@@ -415,7 +415,7 @@ class ClientSideDetectionHostTest : public ChromeRenderViewHostTestHarness {
void NavigateWithoutSBHitAndCommit(const GURL& safe_url) {
controller().LoadURL(
- safe_url, content::Referrer(), content::PAGE_TRANSITION_LINK,
+ safe_url, content::Referrer(), ui::PAGE_TRANSITION_LINK,
std::string());
ASSERT_TRUE(pending_rvh());

Powered by Google App Engine
This is Rietveld 408576698