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

Side by Side Diff: services/catalog/public/cpp/manifest_parsing_util.h

Issue 2684433003: Files required by a service now listed in manifest. (Closed)
Patch Set: Removed unused method in apk_assets 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 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 #ifndef SERVICES_CATALOG_PUBLIC_CPP_MANIFEST_PARSING_UTIL_H_
6 #define SERVICES_CATALOG_PUBLIC_CPP_MANIFEST_PARSING_UTIL_H_
7
8 #include <map>
9 #include <string>
10
11 namespace base {
12 class Value;
13 }
14
15 // TODO(jcivelli): http://crbug.com/687250 Remove this file and inline
16 // PopulateRequiredFiles() in Entry::Deserialize.
17 namespace catalog {
18
19 using RequiredFileMap = std::map<std::string, std::string>;
20
21 bool PopulateRequiredFiles(const base::Value& manifest,
22 RequiredFileMap* required_files);
23
24 } // namespace content
25
26 #endif // SERVICES_CATALOG_PUBLIC_CPP_MANIFEST_PARSING_UTIL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698