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

Side by Side Diff: chrome/browser/resources/print_preview/data/ticket_items/rasterize.js

Issue 2939273002: DO NOT SUBMIT: what chrome/browser/resources/ could eventually look like with clang-format (Closed)
Patch Set: Created 3 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) 2016 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2016 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 cr.define('print_preview.ticket_items', function() { 5 cr.define('print_preview.ticket_items', function() {
6 'use strict'; 6 'use strict';
7 7
8 /** 8 /**
9 * Rasterize ticket item whose value is a {@code boolean} that indicates 9 * Rasterize ticket item whose value is a {@code boolean} that indicates
10 * whether the PDF document should be rendered as images. 10 * whether the PDF document should be rendered as images.
(...skipping 26 matching lines...) Expand all
37 return false; 37 return false;
38 }, 38 },
39 39
40 /** @override */ 40 /** @override */
41 getCapabilityNotAvailableValueInternal: function() { 41 getCapabilityNotAvailableValueInternal: function() {
42 return this.getDefaultValueInternal(); 42 return this.getDefaultValueInternal();
43 } 43 }
44 }; 44 };
45 45
46 // Export 46 // Export
47 return { 47 return {Rasterize: Rasterize};
48 Rasterize: Rasterize
49 };
50 }); 48 });
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698