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/views_login_display_host.h" | 5 #include "chrome/browser/chromeos/login/views_login_display_host.h" |
6 | 6 |
7 #include "chrome/browser/chromeos/login/views_login_display.h" | 7 #include "chrome/browser/chromeos/login/views_login_display.h" |
8 #include "chrome/browser/chromeos/login/wizard_accessibility_helper.h" | 8 #include "chrome/browser/chromeos/login/wizard_accessibility_helper.h" |
9 | 9 |
10 namespace chromeos { | 10 namespace chromeos { |
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
68 return; | 68 return; |
69 } | 69 } |
70 background_window_ = | 70 background_window_ = |
71 BackgroundView::CreateWindowContainingView(background_bounds(), | 71 BackgroundView::CreateWindowContainingView(background_bounds(), |
72 GURL(), | 72 GURL(), |
73 &background_view_); | 73 &background_view_); |
74 background_window_->Show(); | 74 background_window_->Show(); |
75 } | 75 } |
76 | 76 |
77 } // namespace chromeos | 77 } // namespace chromeos |
78 | |
OLD | NEW |