OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "chrome/browser/chromeos/login/ui/user_adding_screen.h" | 5 #include "chrome/browser/chromeos/login/ui/user_adding_screen.h" |
6 | 6 |
7 #include "base/bind.h" | 7 #include "base/bind.h" |
8 #include "base/memory/singleton.h" | 8 #include "base/memory/singleton.h" |
9 #include "base/observer_list.h" | 9 #include "base/observer_list.h" |
10 #include "chrome/browser/browser_process.h" | 10 #include "chrome/browser/browser_process.h" |
11 #include "chrome/browser/chromeos/login/helper.h" | 11 #include "chrome/browser/chromeos/login/helper.h" |
12 #include "chrome/browser/chromeos/login/ui/login_display_host_impl.h" | 12 #include "chrome/browser/chromeos/login/ui/login_display_host_impl.h" |
13 #include "chrome/browser/chromeos/login/ui/user_adding_screen_input_methods_cont
roller.h" | 13 #include "chrome/browser/chromeos/login/ui/user_adding_screen_input_methods_cont
roller.h" |
14 #include "components/session_manager/core/session_manager.h" | 14 #include "components/session_manager/core/session_manager.h" |
15 #include "components/user_manager/user_manager.h" | 15 #include "components/user_manager/user_manager.h" |
16 #include "ui/gfx/rect.h" | 16 #include "ui/gfx/geometry/rect.h" |
17 #include "ui/gfx/size.h" | 17 #include "ui/gfx/size.h" |
18 | 18 |
19 #if !defined(USE_ATHENA) | 19 #if !defined(USE_ATHENA) |
20 #include "ash/shell.h" | 20 #include "ash/shell.h" |
21 #include "ash/system/tray/system_tray.h" | 21 #include "ash/system/tray/system_tray.h" |
22 #include "chrome/browser/chromeos/login/users/wallpaper/wallpaper_manager.h" | 22 #include "chrome/browser/chromeos/login/users/wallpaper/wallpaper_manager.h" |
23 #endif | 23 #endif |
24 | 24 |
25 namespace chromeos { | 25 namespace chromeos { |
26 | 26 |
(...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
118 | 118 |
119 UserAddingScreen::UserAddingScreen() {} | 119 UserAddingScreen::UserAddingScreen() {} |
120 UserAddingScreen::~UserAddingScreen() {} | 120 UserAddingScreen::~UserAddingScreen() {} |
121 | 121 |
122 UserAddingScreen* UserAddingScreen::Get() { | 122 UserAddingScreen* UserAddingScreen::Get() { |
123 return UserAddingScreenImpl::GetInstance(); | 123 return UserAddingScreenImpl::GetInstance(); |
124 } | 124 } |
125 | 125 |
126 } // namespace chromeos | 126 } // namespace chromeos |
127 | 127 |
OLD | NEW |