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

Unified Diff: chrome/browser/ui/webui/print_preview/print_preview_handler.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/ui/webui/print_preview/print_preview_handler.cc
diff --git a/chrome/browser/ui/webui/print_preview/print_preview_handler.cc b/chrome/browser/ui/webui/print_preview/print_preview_handler.cc
index f78549fe454e247b0bbab966491729a629e7d9d6..8fd78082af3e51c0d3e36584e9bb8b37b1b3eff5 100644
--- a/chrome/browser/ui/webui/print_preview/print_preview_handler.cc
+++ b/chrome/browser/ui/webui/print_preview/print_preview_handler.cc
@@ -1022,7 +1022,7 @@ void PrintPreviewHandler::HandleManageCloudPrint(
cloud_devices::GetCloudPrintRelativeURL("manage.html"),
content::Referrer(),
NEW_FOREGROUND_TAB,
- content::PAGE_TRANSITION_LINK,
+ ui::PAGE_TRANSITION_LINK,
false));
}
@@ -1119,7 +1119,7 @@ void PrintPreviewHandler::HandleForceOpenNewTab(const base::ListValue* args) {
return;
chrome::AddSelectedTabWithURL(browser,
GURL(url),
- content::PAGE_TRANSITION_LINK);
+ ui::PAGE_TRANSITION_LINK);
}
void PrintPreviewHandler::SendInitialSettings(

Powered by Google App Engine
This is Rietveld 408576698