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 const redDot = 'data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUA' + |
| 6 'AAAFCAYAAACNbyblAAAAHElEQVQI12P4//8/w38GIAXDIBKE0DHxgljNBAAO' + |
| 7 '9TXL0Y4OHwAAAABJRU5ErkJggg=='; |
| 8 |
| 9 const options = { |
| 10 iconUrl: redDot, |
| 11 title: 'hi', |
| 12 message: 'there', |
| 13 type: 'basic', |
| 14 buttons: [{title: 'Button'}, {title: 'Button'}] |
| 15 }; |
| 16 |
| 17 onload = function() { |
| 18 chrome.notifications.create('test', options, function() { |
| 19 chrome.test.sendMessage('created'); |
| 20 }); |
| 21 }; |
OLD | NEW |