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

Unified Diff: chrome/browser/ui/webui/signin/user_manager_screen_handler.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/webui/signin/user_manager_screen_handler.cc
diff --git a/chrome/browser/ui/webui/signin/user_manager_screen_handler.cc b/chrome/browser/ui/webui/signin/user_manager_screen_handler.cc
index a955bb4df3fd475eeea3d1a3e87935f8ef42504b..a04da7c402a48987318b176a19f59a3204f993d8 100644
--- a/chrome/browser/ui/webui/signin/user_manager_screen_handler.cc
+++ b/chrome/browser/ui/webui/signin/user_manager_screen_handler.cc
@@ -91,10 +91,9 @@ void HandleAndDoNothing(const base::ListValue* args) {
// This callback is run if the only profile has been deleted, and a new
// profile has been created to replace it.
-void OpenNewWindowForProfile(
- chrome::HostDesktopType desktop_type,
- Profile* profile,
- Profile::CreateStatus status) {
+void OpenNewWindowForProfile(ui::HostDesktopType desktop_type,
+ Profile* profile,
+ Profile::CreateStatus status) {
if (status != Profile::CREATE_STATUS_INITIALIZED)
return;
profiles::FindOrCreateNewWindowForProfile(
@@ -163,7 +162,7 @@ class UrlHashHelper : public chrome::BrowserListObserver {
private:
Browser* browser_;
Profile* profile_;
- chrome::HostDesktopType desktop_type_;
+ ui::HostDesktopType desktop_type_;
std::string hash_;
DISALLOW_COPY_AND_ASSIGN(UrlHashHelper);

Powered by Google App Engine
This is Rietveld 408576698