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

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

Issue 2952353002: Extensions: Pass current channel and feature session type to extension unpack utility process. (Closed)
Patch Set: Nit. Created 3 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 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 mojom = "//extensions/common/extension_unpacker.mojom"
6
7 public_headers = [
8 "//extensions/common/manifest.h",
9 "//extensions/common/features/feature_session_type.h",
10 "//components/version_info/version_info.h",
11 ]
12
13 traits_headers = [
14 "//extensions/common/manifest_location_param_traits.h",
15 "//extensions/common/feature_channel_param_traits.h",
16 "//extensions/common/feature_session_type_param_traits.h",
17 ]
18
19 type_mappings = [
20 "extensions.mojom.ManifestLocation=extensions::Manifest::Location",
21 "extensions.mojom.FeatureChannel=version_info::Channel",
22 "extensions.mojom.FeatureSessionType=extensions::FeatureSessionType",
23 ]
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698