Chromium Code Reviews| OLD | NEW |
|---|---|
| (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/manifest_parser.mojom" | |
| 6 | |
| 7 public_headers = [ "//extensions/common/update_manifest.h" ] | |
| 8 | |
| 9 traits_headers = [ "//extensions/common/manifest_parser_struct_traits.h" ] | |
| 10 | |
| 11 sources = [ | |
| 12 "//extensions/common/manifest_parser_struct_traits.cc", | |
| 13 ] | |
| 14 | |
| 15 type_mappings = [ | |
| 16 "extensions.mojom.UpdateManifestResults=::UpdateManifest::Results", | |
|
Devlin
2017/03/21 23:51:16
I wonder if it would make sense to just use the mo
Noel Gordon
2017/03/22 01:34:50
You might recall the recent enum Manifest::locatio
| |
| 17 "extensions.mojom.UpdateManifestResult=::UpdateManifest::Result", | |
| 18 ] | |
| OLD | NEW |