OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 cr.define('cloudprint', function() { | 5 cr.define('cloudprint', function() { |
6 function learnMore() { | 6 function learnMore() { |
7 chrome.send('LearnMore', ['']); | 7 chrome.send('LearnMore', ['']); |
8 chrome.send('DialogClose', ['']); | 8 chrome.send('DialogClose', ['']); |
9 } | 9 } |
10 | 10 |
11 function fixUpTemplateLink() { | 11 function fixUpTemplateLink() { |
(...skipping 16 matching lines...) Expand all Loading... |
28 frames['gaialogin'].showGaiaSuccessAndSettingUp() | 28 frames['gaialogin'].showGaiaSuccessAndSettingUp() |
29 } | 29 } |
30 | 30 |
31 return { | 31 return { |
32 learnMore: learnMore, | 32 learnMore: learnMore, |
33 fixUpTemplateLink: fixUpTemplateLink, | 33 fixUpTemplateLink: fixUpTemplateLink, |
34 showGaiaLogin: showGaiaLogin, | 34 showGaiaLogin: showGaiaLogin, |
35 showGaiaSuccessAndSettingUp: showGaiaSuccessAndSettingUp | 35 showGaiaSuccessAndSettingUp: showGaiaSuccessAndSettingUp |
36 }; | 36 }; |
37 }); | 37 }); |
OLD | NEW |