| // Copyright 2019 The Chromium Authors | |
| // Use of this source code is governed by a BSD-style license that can be | |
| // found in the LICENSE file. | |
| /** | |
| * Must be kept in sync with the C++ ScalingType enum in | |
| * printing/print_job_constants.h. | |
| */ | |
| export enum ScalingType { | |
| DEFAULT = 0, | |
| FIT_TO_PAGE = 1, | |
| FIT_TO_PAPER = 2, | |
| CUSTOM = 3, | |
| } |