| OLD | NEW |
| (Empty) |
| 1 // Copyright 2014 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/screens/mock_device_disabled_screen_view
.h" | |
| 6 | |
| 7 using ::testing::AtLeast; | |
| 8 using ::testing::AtMost; | |
| 9 using ::testing::NotNull; | |
| 10 | |
| 11 namespace chromeos { | |
| 12 | |
| 13 MockDeviceDisabledScreenView::MockDeviceDisabledScreenView() | |
| 14 : delegate_(nullptr) { | |
| 15 EXPECT_CALL(*this, MockSetDelegate(NotNull())).Times(AtLeast(1)); | |
| 16 EXPECT_CALL(*this, MockSetDelegate(nullptr)).Times(AtMost(1)); | |
| 17 } | |
| 18 | |
| 19 MockDeviceDisabledScreenView::~MockDeviceDisabledScreenView() { | |
| 20 if (delegate_) | |
| 21 delegate_->OnViewDestroyed(this); | |
| 22 } | |
| 23 | |
| 24 void MockDeviceDisabledScreenView::SetDelegate(Delegate* delegate) { | |
| 25 delegate_ = delegate; | |
| 26 MockSetDelegate(delegate); | |
| 27 } | |
| 28 | |
| 29 } // namespace chromeos | |
| OLD | NEW |