skym | 6c14662 | 2017-05-25 21:39:04 | [diff] [blame] | 1 | // Copyright 2017 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 | cr.define('chrome.sync.user_events', function() { |
| 6 | function write() { |
| 7 | chrome.sync.writeUserEvent( |
| 8 | $('event-time-usec-input').value, |
| 9 | $('navigation-id-input').value); |
| 10 | } |
| 11 | |
| 12 | function onLoad() { |
| 13 | $('create-event-button').addEventListener('click', write); |
| 14 | } |
| 15 | |
| 16 | return { |
| 17 | onLoad: onLoad |
| 18 | }; |
| 19 | }); |
| 20 | |
| 21 | document.addEventListener( |
| 22 | 'DOMContentLoaded', |
| 23 | chrome.sync.user_events.onLoad, |
| 24 | false); |