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

Unified Diff: chrome/browser/ui/app_list/app_list_controller_delegate.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/app_list/app_list_controller_delegate.cc
diff --git a/chrome/browser/ui/app_list/app_list_controller_delegate.cc b/chrome/browser/ui/app_list/app_list_controller_delegate.cc
index 205e0ec926daf4a6847a9c151eb80a1bc7ba9227..83f94f7769d9d11a2ac79d5690a748c86c15aa1a 100644
--- a/chrome/browser/ui/app_list/app_list_controller_delegate.cc
+++ b/chrome/browser/ui/app_list/app_list_controller_delegate.cc
@@ -149,7 +149,7 @@ void AppListControllerDelegate::ShowAppInWebStore(
net::AppendQueryParameter(url,
extension_urls::kWebstoreSourceField,
source),
- content::PAGE_TRANSITION_LINK);
+ ui::PAGE_TRANSITION_LINK);
chrome::Navigate(&params);
}
@@ -171,7 +171,7 @@ void AppListControllerDelegate::ShowOptionsPage(
chrome::NavigateParams params(
profile,
extensions::OptionsPageInfo::GetOptionsPage(extension),
- content::PAGE_TRANSITION_LINK);
+ ui::PAGE_TRANSITION_LINK);
chrome::Navigate(&params);
}

Powered by Google App Engine
This is Rietveld 408576698