| OLD | NEW |
| (Empty) |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | |
| 2 // Use of this source code is governed by a BSD-style license that can be | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 module arc.mojom; | |
| 6 | |
| 7 interface ObbMounterHost { | |
| 8 // Mounts the specified OBB file to the target path, the owner GID will be set | |
| 9 // to the specified value. | |
| 10 MountObb(string obb_file, | |
| 11 string target_path, | |
| 12 int32 owner_gid) => (bool success); | |
| 13 | |
| 14 // Unmounts the OBB file mounted to the specifed path. | |
| 15 UnmountObb(string target_path) => (bool success); | |
| 16 }; | |
| 17 | |
| 18 interface ObbMounterInstance { | |
| 19 Init(ObbMounterHost host_ptr); | |
| 20 }; | |
| OLD | NEW |