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
ash / components / arc / mojom / obb_mounter.mojom [blame]
// Copyright 2016 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
// Next MinVersion: 2
module arc.mojom;
// Next Method ID: 2
interface ObbMounterHost {
// Mounts the specified OBB file to the target path, the owner GID will be set
// to the specified value.
MountObb@0(string obb_file,
string target_path,
int32 owner_gid) => (bool success);
// Unmounts the OBB file mounted to the specifed path.
UnmountObb@1(string target_path) => (bool success);
};
// Deprecated method IDs: 0
// Next Method ID: 2
interface ObbMounterInstance {
// Establishes full-duplex communication with the host.
[MinVersion=1] Init@1(pending_remote<ObbMounterHost> host_remote) => ();
};