| OLD | NEW |
| 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 Loading... |
| 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 }); |
| OLD | NEW |