| 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/enrollment/mock_enrollment_screen.h" | 5 #include "chrome/browser/chromeos/login/enrollment/mock_enrollment_screen.h" |
| 6 | 6 |
| 7 namespace chromeos { | 7 namespace chromeos { |
| 8 | 8 |
| 9 MockEnrollmentScreen::MockEnrollmentScreen( | 9 MockEnrollmentScreen::MockEnrollmentScreen( |
| 10 ScreenObserver* screen_observer, EnrollmentScreenActor* actor) | 10 BaseScreenDelegate* base_screen_delegate, |
| 11 : EnrollmentScreen(screen_observer, actor) { | 11 EnrollmentScreenActor* actor) |
| 12 : EnrollmentScreen(base_screen_delegate, actor) { |
| 12 } | 13 } |
| 13 | 14 |
| 14 MockEnrollmentScreen::~MockEnrollmentScreen() { | 15 MockEnrollmentScreen::~MockEnrollmentScreen() { |
| 15 } | 16 } |
| 16 | 17 |
| 17 MockEnrollmentScreenActor::MockEnrollmentScreenActor() { | 18 MockEnrollmentScreenActor::MockEnrollmentScreenActor() { |
| 18 } | 19 } |
| 19 | 20 |
| 20 MockEnrollmentScreenActor::~MockEnrollmentScreenActor() { | 21 MockEnrollmentScreenActor::~MockEnrollmentScreenActor() { |
| 21 } | 22 } |
| 22 | 23 |
| 23 } // namespace chromeos | 24 } // namespace chromeos |
| OLD | NEW |