Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(803)

Side by Side Diff: chrome/browser/resources/cloud_print/cloud_print_setup_done.js

Issue 10836328: Options: Move the binary images from options2 -> options. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2012 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 printTestPage() { 6 function printTestPage() {
7 chrome.send('PrintTestPage', ['']); 7 chrome.send('PrintTestPage');
8 chrome.send('DialogClose', ['']); 8 chrome.send('DialogClose');
9 } 9 }
10 10
11 function setMessage(msg) { 11 function setMessage(msg) {
12 $('msgContent').innerHTML = msg; 12 $('msg-content').innerHTML = msg;
13 } 13 }
14 14
15 function onPageShown() { 15 function onPageShown() {
16 $('close').focus(); 16 $('close').focus();
17 } 17 }
18 18
19 return { 19 return {
20 printTestPage: printTestPage, 20 printTestPage: printTestPage,
21 setMessage: setMessage, 21 setMessage: setMessage,
22 onPageShown: onPageShown 22 onPageShown: onPageShown
23 }; 23 };
24 }); 24 });
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698