| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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/webui_login_display.h" | 5 #include "chrome/browser/chromeos/login/webui_login_display.h" |
| 6 | 6 |
| 7 #include "chrome/browser/chromeos/input_method/xkeyboard.h" | 7 #include "chrome/browser/chromeos/input_method/xkeyboard.h" |
| 8 #include "chrome/browser/chromeos/login/user_manager.h" | 8 #include "chrome/browser/chromeos/login/user_manager.h" |
| 9 #include "chrome/browser/chromeos/login/webui_login_view.h" | 9 #include "chrome/browser/chromeos/login/webui_login_view.h" |
| 10 #include "chrome/browser/chromeos/login/wizard_accessibility_helper.h" | 10 #include "chrome/browser/chromeos/login/wizard_accessibility_helper.h" |
| 11 #include "chrome/browser/profiles/profile_manager.h" | 11 #include "chrome/browser/profiles/profile_manager.h" |
| 12 #include "chrome/browser/ui/browser_window.h" | 12 #include "chrome/browser/ui/browser_window.h" |
| 13 #include "grit/chromium_strings.h" | 13 #include "grit/chromium_strings.h" |
| 14 #include "grit/generated_resources.h" | 14 #include "grit/generated_resources.h" |
| 15 #include "ui/base/l10n/l10n_util.h" | 15 #include "ui/base/l10n/l10n_util.h" |
| 16 #include "ui/views/widget/widget.h" | 16 #include "views/widget/widget.h" |
| 17 | 17 |
| 18 #if defined(TOOLKIT_USES_GTK) | 18 #if defined(TOOLKIT_USES_GTK) |
| 19 #include "chrome/browser/chromeos/legacy_window_manager/wm_ipc.h" | 19 #include "chrome/browser/chromeos/legacy_window_manager/wm_ipc.h" |
| 20 #endif | 20 #endif |
| 21 | 21 |
| 22 namespace chromeos { | 22 namespace chromeos { |
| 23 | 23 |
| 24 // WebUILoginDisplay, public: -------------------------------------------------- | 24 // WebUILoginDisplay, public: -------------------------------------------------- |
| 25 | 25 |
| 26 WebUILoginDisplay::~WebUILoginDisplay() { | 26 WebUILoginDisplay::~WebUILoginDisplay() { |
| (...skipping 164 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 191 | 191 |
| 192 bool WebUILoginDisplay::IsShowGuest() const { | 192 bool WebUILoginDisplay::IsShowGuest() const { |
| 193 return show_guest_; | 193 return show_guest_; |
| 194 } | 194 } |
| 195 | 195 |
| 196 bool WebUILoginDisplay::IsShowNewUser() const { | 196 bool WebUILoginDisplay::IsShowNewUser() const { |
| 197 return show_new_user_; | 197 return show_new_user_; |
| 198 } | 198 } |
| 199 | 199 |
| 200 } // namespace chromeos | 200 } // namespace chromeos |
| OLD | NEW |