Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(510)

Side by Side Diff: components/arc/common/obb_mounter.mojom

Issue 1995243002: Add OBB mounter Mojo interface (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 4 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(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 };
OLDNEW
« no previous file with comments | « components/arc/common/arc_bridge.mojom ('k') | components/arc/obb_mounter/arc_obb_mounter_bridge.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698