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

Side by Side 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, 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 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 // Zip file creator provided by the utility process and exposed by mojo
6 // policy control to the chrome browser process on OS_CHROMEOS.
7
8 module chrome.mojom;
9
10 import "mojo/common/file.mojom";
11 import "mojo/common/file_path.mojom";
12
13 interface ZipFileCreator {
14 // OS_CHROMEOS: Create a |zip_file| from a list of source files.
15 CreateZipFile(mojo.common.mojom.FilePath source_dir,
16 array<mojo.common.mojom.FilePath> source_relative_paths,
17 mojo.common.mojom.File zip_file)
18 => (bool success);
19 };
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698