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

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

Issue 1144983002: Introduce concept of provisional destinations to print preview (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: . Created 5 years, 6 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 1296 matching lines...) Expand 10 before | Expand all | Expand 10 after
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 });
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698