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

Unified Diff: chrome/browser/ui/ash/system_tray_delegate_common.cc

Issue 1336823003: Move chrome::HostDesktopType to ui::HostDesktopType (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@base_session_service_delegate_impl
Patch Set: Fix build on Mac and CrOS Created 5 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/ash/system_tray_delegate_common.cc
diff --git a/chrome/browser/ui/ash/system_tray_delegate_common.cc b/chrome/browser/ui/ash/system_tray_delegate_common.cc
index fa6b9e630a36fe1a32def17c1d953d0a8c069f32..7918cbf8754fda572e080c20a03f290ecf694b4e 100644
--- a/chrome/browser/ui/ash/system_tray_delegate_common.cc
+++ b/chrome/browser/ui/ash/system_tray_delegate_common.cc
@@ -81,14 +81,14 @@ base::HourClockType SystemTrayDelegateCommon::GetHourClockType() const {
void SystemTrayDelegateCommon::ShowChromeSlow() {
#if defined(OS_LINUX)
chrome::ScopedTabbedBrowserDisplayer displayer(
- ProfileManager::GetPrimaryUserProfile(), chrome::HOST_DESKTOP_TYPE_ASH);
+ ProfileManager::GetPrimaryUserProfile(), ui::HOST_DESKTOP_TYPE_ASH);
chrome::ShowSlow(displayer.browser());
#endif // defined(OS_LINUX)
}
void SystemTrayDelegateCommon::ShowHelp() {
chrome::ShowHelpForProfile(ProfileManager::GetLastUsedProfile(),
- chrome::HOST_DESKTOP_TYPE_ASH,
+ ui::HOST_DESKTOP_TYPE_ASH,
chrome::HELP_SOURCE_MENU);
}

Powered by Google App Engine
This is Rietveld 408576698