1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
ash / components / arc / mojom / compatibility_mode.mojom [blame]
// Copyright 2021 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
//
// Deprecated method IDs: 1
// Next MinVersion: 3
module arc.mojom;
// Contains the types of resize lock setting status that overrides the state
// Android calculates.
// These values are persisted to logs. Entries should not be renumbered and
// numeric values should never be reused.
[Extensible]
enum ArcResizeLockState {
// The setting value is not set.
UNDEFINED = 0,
// Resize lock is ready to be turned on. The state must have this value first
// to be enabled.
READY = 1,
// Resize lock is enabled.
ON = 2,
// Resize lock is disabled via the Chrome OS settings.
OFF = 3,
// Resize lock is enabled, and even resize/resizability toggle is not
// available.
FULLY_LOCKED = 4,
};
// Interface for synchronizing the Chrome OS setting value for compatibility
// mode to Android.
// Compatibility mode is a special set of WM policies to enforce restrictions
// on apps that are not optimized for large screens.
// Next Method ID: 3
interface CompatibilityModeInstance {
// Synchronizes the resize lock state of the given package name to Android.
SetResizeLockState@0(string package_name,
ArcResizeLockState state);
// REMOVED! [MinVersion=1] DEPRECATED_IsGioApplicable@1(string package_name)
// => (bool is_gio_applicable);
// Queries whether app of `package_name` is an Optimized-for-Chromebook (O4C)
// app. Returns true if `package_name` is an O4C app.
[MinVersion=2] IsOptimizedForCrosApp@2(string package_name) =>
(bool is_o4c_app);
};