| 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/login/webui_login_view.h" | 7 #include "chrome/browser/chromeos/login/webui_login_view.h" |
| 8 #include "chrome/browser/chromeos/wm_ipc.h" | 8 #include "chrome/browser/chromeos/wm_ipc.h" |
| 9 #include "chrome/browser/profiles/profile_manager.h" | 9 #include "chrome/browser/profiles/profile_manager.h" |
| 10 #include "chrome/browser/ui/browser_window.h" | 10 #include "chrome/browser/ui/browser_window.h" |
| 11 #include "grit/chromium_strings.h" | 11 #include "grit/chromium_strings.h" |
| 12 #include "grit/generated_resources.h" | 12 #include "grit/generated_resources.h" |
| 13 #include "ui/base/l10n/l10n_util.h" | 13 #include "ui/base/l10n/l10n_util.h" |
| 14 #include "views/widget/widget.h" | 14 #include "views/widget/widget.h" |
| 15 | 15 |
| 16 #if defined(TOUCH_UI) | |
| 17 #include "chrome/browser/chromeos/login/touch_login_view.h" | |
| 18 #endif | |
| 19 | |
| 20 namespace chromeos { | 16 namespace chromeos { |
| 21 | 17 |
| 22 // WebUILoginDisplay, public: -------------------------------------------------- | 18 // WebUILoginDisplay, public: -------------------------------------------------- |
| 23 | 19 |
| 24 WebUILoginDisplay::~WebUILoginDisplay() { | 20 WebUILoginDisplay::~WebUILoginDisplay() { |
| 25 } | 21 } |
| 26 | 22 |
| 27 // WebUILoginDisplay, Singleton implementation: -------------------------------- | 23 // WebUILoginDisplay, Singleton implementation: -------------------------------- |
| 28 | 24 |
| 29 // static | 25 // static |
| (...skipping 115 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 145 | 141 |
| 146 // Singleton implementation: --------------------------------------------------- | 142 // Singleton implementation: --------------------------------------------------- |
| 147 | 143 |
| 148 WebUILoginDisplay::WebUILoginDisplay() | 144 WebUILoginDisplay::WebUILoginDisplay() |
| 149 : LoginDisplay(NULL, gfx::Rect()), | 145 : LoginDisplay(NULL, gfx::Rect()), |
| 150 LoginUIHandlerDelegate(), | 146 LoginUIHandlerDelegate(), |
| 151 login_window_(NULL) { | 147 login_window_(NULL) { |
| 152 } | 148 } |
| 153 | 149 |
| 154 } // namespace chromeos | 150 } // namespace chromeos |
| OLD | NEW |