Home | History | Annotate | Download | only in enrollment
      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
      3 // found in the LICENSE file.
      4 
      5 #include "chrome/browser/chromeos/login/enrollment/mock_enrollment_screen.h"
      6 
      7 namespace chromeos {
      8 
      9 MockEnrollmentScreen::MockEnrollmentScreen(
     10     ScreenObserver* screen_observer, EnrollmentScreenActor* actor)
     11     : EnrollmentScreen(screen_observer, actor) {
     12 }
     13 
     14 MockEnrollmentScreen::~MockEnrollmentScreen() {
     15 }
     16 
     17 MockEnrollmentScreenActor::MockEnrollmentScreenActor() {
     18 }
     19 
     20 MockEnrollmentScreenActor::~MockEnrollmentScreenActor() {
     21 }
     22 
     23 }  // namespace chromeos
     24