Chromium Code Reviews| Index: components/rappor/rappor_registry.h |
| diff --git a/components/rappor/rappor_registry.h b/components/rappor/rappor_registry.h |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..809f4a6b55ad7440f9548606fc23378ee36edf5e |
| --- /dev/null |
| +++ b/components/rappor/rappor_registry.h |
| @@ -0,0 +1,21 @@ |
| +// Copyright 2014 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. |
| + |
| +#ifndef COMPONENTS_RAPPOR_RAPPOR_REGISTRY_H_ |
| +#define COMPONENTS_RAPPOR_RAPPOR_REGISTRY_H_ |
| + |
| +namespace rappor { |
| + |
| +struct RapporParameters; |
| + |
| +enum RapporRegistryIndex { |
| + HOME_PAGE_RAPPOR = 0, |
| + NUM_RAPPOR_REGISTRY_ENTRIES |
| +}; |
| + |
| +extern const RapporParameters g_rappor_registry[]; |
|
Alexei Svitkine (slow)
2014/02/04 19:20:12
Can you expose a function rather than the array di
Steven Holte
2014/02/04 21:41:21
Moved this to rappor_service.cc as kRapporParamete
|
| + |
| +} // namespace rappor |
| + |
| +#endif // COMPONENTS_RAPPOR_RAPPOR_REGISTRY_H_ |