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

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

Issue 9689075: Move some resources to a proper location. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Separated icon addition. Created 8 years, 9 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
(Empty)
1 // Copyright (c) 2010 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('cloudprint', function() {
6 function printTestPage() {
7 chrome.send('PrintTestPage', ['']);
8 chrome.send('DialogClose', ['']);
9 }
10
11 function setMessage(msg) {
12 $('msgContent').innerHTML = msg;
13 }
14
15 function onPageShown() {
16 $('close').focus();
17 }
18
19 return {
20 printTestPage: printTestPage,
21 setMessage: setMessage,
22 onPageShown: onPageShown
23 };
24 });
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698