// 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); | |
} | |
}); |