Chromium Code Reviews| OLD | NEW |
|---|---|
| (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 | |
| OLD | NEW |