| 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 1296 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1307 <include src="../pdf/pdf_scripting_api.js"> | 1307 <include src="../pdf/pdf_scripting_api.js"> |
| 1308 <include src="previewarea/preview_area.js"> | 1308 <include src="previewarea/preview_area.js"> |
| 1309 <include src="preview_generator.js"> | 1309 <include src="preview_generator.js"> |
| 1310 | 1310 |
| 1311 <include src="search/destination_list.js"> | 1311 <include src="search/destination_list.js"> |
| 1312 <include src="search/cloud_destination_list.js"> | 1312 <include src="search/cloud_destination_list.js"> |
| 1313 <include src="search/recent_destination_list.js"> | 1313 <include src="search/recent_destination_list.js"> |
| 1314 <include src="search/destination_list_item.js"> | 1314 <include src="search/destination_list_item.js"> |
| 1315 <include src="search/destination_search.js"> | 1315 <include src="search/destination_search.js"> |
| 1316 <include src="search/fedex_tos.js"> | 1316 <include src="search/fedex_tos.js"> |
| 1317 <include src="search/provisional_destination_resolver.js"> |
| 1317 | 1318 |
| 1318 window.addEventListener('DOMContentLoaded', function() { | 1319 window.addEventListener('DOMContentLoaded', function() { |
| 1319 printPreview = new print_preview.PrintPreview(); | 1320 printPreview = new print_preview.PrintPreview(); |
| 1320 printPreview.initialize(); | 1321 printPreview.initialize(); |
| 1321 }); | 1322 }); |
| OLD | NEW |