blob: be917a4bc18a2628b30fd01c53871789c62355fa [file] [log] [blame]
// Copyright (c) 2019 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
cr.define('print_preview', function() {
'use strict';
/** @enum {number} */
const ScalingType = {
DEFAULT: 0,
FIT_TO_PAGE: 1,
CUSTOM: 2,
};
// Export
return {
ScalingType: ScalingType,
};
});