blob: f4eccbff69956e106b508cc9b26e4d1bbf5c8209 [file] [log] [blame]
// Copyright 2018 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.
Polymer({
is: 'landing-view',
behaviors: [welcome.NavigationBehavior],
/** @private */
onExistingUserClick_: function() {
welcome.WelcomeBrowserProxyImpl.getInstance().handleActivateSignIn();
},
/** @private */
onNewUserClick_: function() {
this.navigateTo(welcome.Routes.NEW_USER, 1);
}
});