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

Side by Side Diff: components/rappor/rappor_registry.cc

Issue 49753002: RAPPOR implementation (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rappor Registry Created 6 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 2014 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 #include "components/rappor/rappor_registry.h"
6
7 #include "components/rappor/rappor_parameters.h"
8
9 namespace rappor {
10
11 extern const RapporParameters g_rappor_registry[NUM_RAPPOR_REGISTRY_ENTRIES] = {
12 { // HOME_PAGE_RAPPOR
13 "Settings.HomePage" /* Metric name */,
Alexei Svitkine (slow) 2014/02/04 19:20:12 This wasn't quite what I meant. I think the name
Steven Holte 2014/02/04 21:41:21 Split name and parameters. PTAL.
14 16 /* Bloom filter size bytes */,
15 2 /* Bloom filter hash count */,
16 rappor::PROBABILITY_75 /* Fake data probability */,
17 rappor::PROBABILITY_50 /* Fake one probability */,
18 rappor::PROBABILITY_75 /* One coin probability */,
19 rappor::PROBABILITY_50 /* Zero coin probability */
20 },
21 };
22
23 } // namespace rappor
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698