blob: a81f50bc8c0af7cffeaa0997a73ccbc7709b7c4d [file] [log] [blame]
// Copyright 2019 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.
/** @implements {account_migration.AccountMigrationBrowserProxy} */
class TestAccountMigrationBrowserProxy extends TestBrowserProxy {
constructor() {
super([
'closeDialog',
'reauthenticateAccount',
]);
}
/** @override */
closeDialog() {
this.methodCalled('closeDialog');
}
/** @override */
reauthenticateAccount(account_email) {
this.methodCalled('reauthenticateAccount', account_email);
}
}