blob: 6c1a6d6ec70a3f931c631724cd603e9ccb43e493 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
// Copyright 2016 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.
#include "mojo/services/catalog/store.h"
namespace catalog {
// static
const char Store::kManifestVersionKey[] = "manifest_version";
// static
const char Store::kNameKey[] = "name";
// static
const char Store::kQualifierKey[] = "process-group";
// static
const char Store::kDisplayNameKey[] = "display_name";
// static
const char Store::kCapabilitiesKey[] = "capabilities";
// static
const char Store::kCapabilities_ProvidedKey[] = "provided";
// static
const char Store::kCapabilities_RequiredKey[] = "required";
// static
const char Store::kCapabilities_ClassesKey[] = "classes";
// static
const char Store::kCapabilities_InterfacesKey[] = "interfaces";
// static
const char Store::kApplicationsKey[] = "applications";
} // namespace catalog
|