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

Unified Diff: extensions/common/extension_unpacker.mojom

Issue 2697463002: Convert utility process extension Unpacker IPC to mojo (Closed)
Patch Set: Comment-only change in response to review comments. Created 3 years, 9 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 side-by-side diff with in-line comments
Download patch
Index: extensions/common/extension_unpacker.mojom
diff --git a/extensions/common/extension_unpacker.mojom b/extensions/common/extension_unpacker.mojom
new file mode 100644
index 0000000000000000000000000000000000000000..154987193927e5f1317b45049d2ec34c38df8f77
--- /dev/null
+++ b/extensions/common/extension_unpacker.mojom
@@ -0,0 +1,32 @@
+// Copyright 2017 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+// Secure chrome extension unpacker service provided by the utility process
+// and exposed by mojo policy to the chrome browser process.
+
+module extensions.mojom;
+
+import "extensions/common/manifest_location.mojom";
+import "mojo/common/file_path.mojom";
+import "mojo/common/string16.mojom";
+import "mojo/common/values.mojom";
+
+interface ExtensionUnpacker {
+ // Unzip |file| into the directory |path|.
+ Unzip(mojo.common.mojom.FilePath file,
+ mojo.common.mojom.FilePath path) => (bool success);
+
+ // Unpack, validate, and sanitize the extension in directory |path|, and
+ // return the parsed manifest.json in |manifest|. The supplied |location|,
+ // and the |creation_flags| defined by Extension::InitFromValueFlags, are
+ // passed to Extension::Create() when unpacking the extension.
+ // If Unpack() fails for any reason, |error| contains a user-displayable
+ // explanation of what went wrong.
+ Unpack(mojo.common.mojom.FilePath path,
+ string extension_id,
+ ManifestLocation location,
+ int32 creation_flags)
+ => (mojo.common.mojom.String16 error,
+ mojo.common.mojom.DictionaryValue? manifest);
+};

Powered by Google App Engine
This is Rietveld 408576698