blob: ade8df29a16eda519f30f5edf1ca8ec943bd1c36 [file] [log] [blame]
// 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.
#include "chrome/browser/chromeos/login/screens/mock_eula_screen.h"
namespace chromeos {
using ::testing::AtLeast;
using ::testing::_;
MockEulaScreen::MockEulaScreen(EulaView* view,
const ScreenExitCallback& exit_callback)
: EulaScreen(view, exit_callback) {}
MockEulaScreen::~MockEulaScreen() {}
void MockEulaScreen::ExitScreen(Result result) {
exit_callback()->Run(result);
}
MockEulaView::MockEulaView() {
EXPECT_CALL(*this, MockBind(_)).Times(AtLeast(1));
}
MockEulaView::~MockEulaView() {
if (screen_)
screen_->OnViewDestroyed(this);
}
void MockEulaView::Bind(EulaScreen* screen) {
screen_ = screen;
MockBind(screen);
}
void MockEulaView::Unbind() {
screen_ = nullptr;
MockUnbind();
}
} // namespace chromeos