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

Unified Diff: components/rappor/rappor_registry.h

Issue 49753002: RAPPOR implementation (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rappor Registry Created 6 years, 11 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 side-by-side diff with in-line comments
Download patch
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_

Powered by Google App Engine
This is Rietveld 408576698