Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright 2013 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_pref_names.h" | |
| 6 | |
| 7 namespace rappor { | |
| 8 namespace prefs { | |
| 9 | |
| 10 // A base-64 encoded randomly generated byte string, which is used as a seed | |
|
Ilya Sherman
2014/01/10 11:00:32
nit: "encoded randomly" -> "encoded, randomly"
Steven Holte
2014/01/14 00:47:54
Done.
| |
| 11 // for generating fake data. | |
|
Ilya Sherman
2014/01/10 11:00:32
nit: "for generating fake data" might be more easi
Steven Holte
2014/01/14 00:47:54
Changed to "redacting collected data".
| |
| 12 const char kRapporSecret[] = "rappor.secret"; | |
| 13 | |
| 14 } // namespace prefs | |
| 15 } // namespace rappor | |
| OLD | NEW |