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

Unified Diff: chrome/browser/resources/cloud_print/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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/resources/cloud_print/cloud_print_setup_done.js
diff --git a/chrome/browser/printing/cloud_print/resources/cloud_print_setup_done.js b/chrome/browser/resources/cloud_print/cloud_print_setup_done.js
similarity index 84%
rename from chrome/browser/printing/cloud_print/resources/cloud_print_setup_done.js
rename to chrome/browser/resources/cloud_print/cloud_print_setup_done.js
index 2a47a9cde48fd95db574e8a568e86fd90d6e5289..cad47a094f1c5e43d9bf536fd3db2a6d23332604 100644
--- a/chrome/browser/printing/cloud_print/resources/cloud_print_setup_done.js
+++ b/chrome/browser/resources/cloud_print/cloud_print_setup_done.js
@@ -1,24 +1,24 @@
-// Copyright (c) 2010 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-cr.define('cloudprint', function() {
- function printTestPage() {
- chrome.send('PrintTestPage', ['']);
- chrome.send('DialogClose', ['']);
- }
-
- function setMessage(msg) {
- $('msgContent').innerHTML = msg;
- }
-
- function onPageShown() {
- $('close').focus();
- }
-
- return {
- printTestPage: printTestPage,
- setMessage: setMessage,
- onPageShown: onPageShown
- };
-});
+// Copyright (c) 2012 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+cr.define('cloudprint', function() {
+ function printTestPage() {
+ chrome.send('PrintTestPage', ['']);
+ chrome.send('DialogClose', ['']);
+ }
+
+ function setMessage(msg) {
+ $('msgContent').innerHTML = msg;
+ }
+
+ function onPageShown() {
+ $('close').focus();
+ }
+
+ return {
+ printTestPage: printTestPage,
+ setMessage: setMessage,
+ onPageShown: onPageShown
+ };
+});

Powered by Google App Engine
This is Rietveld 408576698