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

Side by Side Diff: extensions/common/extension_unpacker.mojom

Issue 2697463002: Convert utility process extension Unpacker IPC to mojo (Closed)
Patch Set: Use MakeUnique when creating the utility mojo client. Created 3 years, 10 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 2017 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 // Secure chrome extension unpacker service provided by the utility process
6 // and exposed by mojo policy to the chrome browser process.
7
8 module extensions.mojom;
9
10 import "mojo/common/file_path.mojom";
11 import "mojo/common/string16.mojom";
12 import "mojo/common/values.mojom";
13
14 interface ExtensionUnpacker {
15 // Unzip |file| into the directory |path|.
16 Unzip(mojo.common.mojom.FilePath file,
17 mojo.common.mojom.FilePath path) => (bool success);
18
19 // Unpack, validate, and sanitize the extension in directory |path|, and
20 // return the parsed manifest.json file in |manifest|.
21 // If unpacking fails, |error| is a user-displayable explanation of what
22 // went wrong.
23 Unpack(mojo.common.mojom.FilePath path,
24 string extension_id,
25 int32 location,
Devlin 2017/02/14 17:24:59 Mojo supports enums - can we do that instead?
Noel Gordon 2017/02/15 17:28:09 Yeah I cargo-culted the existing API here, there w
Devlin 2017/02/17 15:53:56 My understanding from rockot@ is that mojo can reu
Noel Gordon 2017/02/27 11:47:50 Yes, but that would also restrict the code to C++
Devlin 2017/02/27 19:30:15 I'd rather we optimize for the C++ case, since we
26 int32 creation_flags)
27 => (mojo.common.mojom.String16 error,
28 mojo.common.mojom.DictionaryValue manifest);
29 };
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698