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

Unified Diff: chrome/common/zip_file_creator.mojom

Issue 2705613003: Convert utility process zip creator IPC to mojo (Closed)
Patch Set: Add a comment about release references. 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 side-by-side diff with in-line comments
Download patch
Index: chrome/common/zip_file_creator.mojom
diff --git a/chrome/common/zip_file_creator.mojom b/chrome/common/zip_file_creator.mojom
new file mode 100644
index 0000000000000000000000000000000000000000..bf9010f6ece69b709c490654f332f9f0e46b4e50
--- /dev/null
+++ b/chrome/common/zip_file_creator.mojom
@@ -0,0 +1,19 @@
+// 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.
+
+// Zip file creator provided by the utility process and exposed by mojo
+// policy control to the chrome browser process on OS_CHROMEOS.
+
+module chrome.mojom;
+
+import "mojo/common/file.mojom";
+import "mojo/common/file_path.mojom";
+
+interface ZipFileCreator {
+ // OS_CHROMEOS: Create a |zip_file| from a list of source files.
+ CreateZipFile(mojo.common.mojom.FilePath source_dir,
+ array<mojo.common.mojom.FilePath> source_relative_paths,
+ mojo.common.mojom.File zip_file)
+ => (bool success);
+};

Powered by Google App Engine
This is Rietveld 408576698