| 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 "views/widget/widget.h" | 11 #include "views/widget/widget.h" |
| 12 | 12 |
| 13 #if defined(TOUCH_UI) | |
| 14 #include "chrome/browser/chromeos/login/touch_login_view.h" | |
| 15 #endif | |
| 16 | |
| 17 namespace chromeos { | 13 namespace chromeos { |
| 18 | 14 |
| 19 // WebUILoginDisplay, public: -------------------------------------------------- | 15 // WebUILoginDisplay, public: -------------------------------------------------- |
| 20 | 16 |
| 21 WebUILoginDisplay::~WebUILoginDisplay() { | 17 WebUILoginDisplay::~WebUILoginDisplay() { |
| 22 } | 18 } |
| 23 | 19 |
| 24 // WebUILoginDisplay, Singleton implementation: -------------------------------- | 20 // WebUILoginDisplay, Singleton implementation: -------------------------------- |
| 25 | 21 |
| 26 // static | 22 // static |
| (...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 108 | 104 |
| 109 // Singleton implementation: --------------------------------------------------- | 105 // Singleton implementation: --------------------------------------------------- |
| 110 | 106 |
| 111 WebUILoginDisplay::WebUILoginDisplay() | 107 WebUILoginDisplay::WebUILoginDisplay() |
| 112 : LoginDisplay(NULL, gfx::Rect()), | 108 : LoginDisplay(NULL, gfx::Rect()), |
| 113 LoginUIHandlerDelegate(), | 109 LoginUIHandlerDelegate(), |
| 114 login_window_(NULL) { | 110 login_window_(NULL) { |
| 115 } | 111 } |
| 116 | 112 |
| 117 } // namespace chromeos | 113 } // namespace chromeos |
| OLD | NEW |