Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright 2017 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/ukm/ukm_pref_names.h" | |
| 6 | |
| 7 namespace ukm { | |
| 8 namespace prefs { | |
| 9 | |
| 10 // A random value unique for each chrome install. | |
|
Alexei Svitkine (slow)
2017/01/10 17:37:19
Mention what the type is.
Steven Holte
2017/01/10 22:52:44
Done.
| |
| 11 const char kUkmClientId[] = "ukm.client_id"; | |
| 12 | |
| 13 // Preference which stores serialized UKM logs to be uploaded. | |
| 14 const char kUkmPersistedLogs[] = "ukm.persisted_logs"; | |
| 15 | |
| 16 } // namespace prefs | |
| 17 } // namespace ukm | |
| OLD | NEW |