Chromium Code Reviews| Index: components/ukm/ukm_pref_names.cc |
| diff --git a/components/ukm/ukm_pref_names.cc b/components/ukm/ukm_pref_names.cc |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..75b374ff074ab4b92903398e23891b79f9fd4ec6 |
| --- /dev/null |
| +++ b/components/ukm/ukm_pref_names.cc |
| @@ -0,0 +1,17 @@ |
| +// Copyright 2017 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. |
| + |
| +#include "components/ukm/ukm_pref_names.h" |
| + |
| +namespace ukm { |
| +namespace prefs { |
| + |
| +// A random uint64 value unique for each chrome install. |
| +const char kUkmClientId[] = "ukm.client_id"; |
| + |
| +// Preference which stores serialized UKM logs to be uploaded. |
| +const char kUkmPersistedLogs[] = "ukm.persisted_logs"; |
|
battre
2017/01/12 08:12:55
Do we really want to store this in prefs? Any upda
Steven Holte
2017/01/13 23:15:26
I'm pretty much just reusing the UMA logic here.
|
| + |
| +} // namespace prefs |
| +} // namespace ukm |