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

Side by Side Diff: chrome/browser/resources/print_preview/print_preview.js

Issue 2760753002: [CUPS] Implement the local CUPS printer setup waiting UI. (Closed)
Patch Set: Address dpapad@'s comments. Fix failed test. Created 3 years, 8 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
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 // TODO(rltoscano): Move data/* into print_preview.data namespace 5 // TODO(rltoscano): Move data/* into print_preview.data namespace
6 6
7 // <include src="component.js"> 7 // <include src="component.js">
8 // <include src="print_preview_focus_manager.js"> 8 // <include src="print_preview_focus_manager.js">
9 9
10 cr.define('print_preview', function() { 10 cr.define('print_preview', function() {
(...skipping 1347 matching lines...) Expand 10 before | Expand all | Expand 10 after
1358 // <include src="../pdf/pdf_scripting_api.js"> 1358 // <include src="../pdf/pdf_scripting_api.js">
1359 // <include src="previewarea/preview_area.js"> 1359 // <include src="previewarea/preview_area.js">
1360 // <include src="preview_generator.js"> 1360 // <include src="preview_generator.js">
1361 1361
1362 // <include src="search/destination_list.js"> 1362 // <include src="search/destination_list.js">
1363 // <include src="search/cloud_destination_list.js"> 1363 // <include src="search/cloud_destination_list.js">
1364 // <include src="search/recent_destination_list.js"> 1364 // <include src="search/recent_destination_list.js">
1365 // <include src="search/destination_list_item.js"> 1365 // <include src="search/destination_list_item.js">
1366 // <include src="search/destination_search.js"> 1366 // <include src="search/destination_search.js">
1367 // <include src="search/fedex_tos.js"> 1367 // <include src="search/fedex_tos.js">
1368 // <include src="search/cros_destination_resolver.js">
1369 // <include src="search/provisional_destination_resolver.js"> 1368 // <include src="search/provisional_destination_resolver.js">
1370 1369
1371 window.addEventListener('DOMContentLoaded', function() { 1370 window.addEventListener('DOMContentLoaded', function() {
1372 printPreview = new print_preview.PrintPreview(); 1371 printPreview = new print_preview.PrintPreview();
1373 printPreview.initialize(); 1372 printPreview.initialize();
1374 }); 1373 });
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698