mirror of
https://github.com/klzgrad/naiveproxy.git
synced 2024-11-24 22:36:09 +03:00
22 lines
520 B
Plaintext
22 lines
520 B
Plaintext
// Copyright 2016 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.
|
|
|
|
module arc.mojom;
|
|
|
|
// Duplicates ui::ScaleFactor enum in order to be accessible on Android side.
|
|
enum ScaleFactor {
|
|
SCALE_FACTOR_NONE = 0,
|
|
SCALE_FACTOR_100P,
|
|
SCALE_FACTOR_125P,
|
|
SCALE_FACTOR_133P,
|
|
SCALE_FACTOR_140P,
|
|
SCALE_FACTOR_150P,
|
|
SCALE_FACTOR_180P,
|
|
SCALE_FACTOR_200P,
|
|
SCALE_FACTOR_250P,
|
|
SCALE_FACTOR_300P,
|
|
|
|
NUM_SCALE_FACTORS
|
|
};
|