Chromium Code Reviews| Index: chrome/browser/chromeos/login/webui_login_display_host.cc |
| diff --git a/chrome/browser/chromeos/login/webui_login_display_host.cc b/chrome/browser/chromeos/login/webui_login_display_host.cc |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..ced024cf6f8e11326921fb12b1494e94f8624514 |
| --- /dev/null |
| +++ b/chrome/browser/chromeos/login/webui_login_display_host.cc |
| @@ -0,0 +1,53 @@ |
| +// Copyright (c) 2011 The Chromium Authors. All rights reserved. |
| +// Use of this source code is governed by a BSD-style license that can be |
| +// found in the LICENSE file. |
|
oshima
2011/05/21 16:35:37
looks like you deleted domui_login_display_host.cc
rharrison
2011/05/25 18:10:43
I redid the the git mv since I agreed with you tha
|
| + |
| +#include "chrome/browser/chromeos/login/webui_login_display_host.h" |
| + |
| +#include "chrome/browser/chromeos/login/webui_login_display.h" |
| + |
| +namespace chromeos { |
| + |
| +// WebUILoginDisplayHost ------------------------------------------------------- |
| + |
| +WebUILoginDisplayHost::WebUILoginDisplayHost(const gfx::Rect& background_bounds) |
| + : BaseLoginDisplayHost(background_bounds) { |
| +} |
| + |
| +WebUILoginDisplayHost::~WebUILoginDisplayHost() { |
| +} |
| + |
| +// LoginDisplayHost implementation --------------------------------------------- |
| + |
| +LoginDisplay* WebUILoginDisplayHost::CreateLoginDisplay( |
| + LoginDisplay::Delegate* delegate) const { |
| + WebUILoginDisplay* webui_login_display = WebUILoginDisplay::GetInstance(); |
| + webui_login_display->set_delegate(delegate); |
| + webui_login_display->set_background_bounds(background_bounds()); |
| + return webui_login_display; |
| +} |
| + |
| +gfx::NativeWindow WebUILoginDisplayHost::GetNativeWindow() const { |
| + return NULL; |
| +} |
| + |
| +void WebUILoginDisplayHost::SetOobeProgress(BackgroundView::LoginStep step) { |
| +} |
| + |
| +void WebUILoginDisplayHost::SetOobeProgressBarVisible(bool visible) { |
| +} |
| + |
| +void WebUILoginDisplayHost::SetShutdownButtonEnabled(bool enable) { |
| +} |
| + |
| +void WebUILoginDisplayHost::SetStatusAreaEnabled(bool enable) { |
| +} |
| + |
| +void WebUILoginDisplayHost::SetStatusAreaVisible(bool visible) { |
| +} |
| + |
| +void WebUILoginDisplayHost::ShowBackground() { |
| +} |
| + |
| +} // namespace chromeos |
| + |