| 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..f414cad04ad110cbef695c3cee341c5371cc8365
|
| --- /dev/null
|
| +++ b/components/ukm/ukm_pref_names.cc
|
| @@ -0,0 +1,17 @@
|
| +// Copyright 2014 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 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";
|
| +
|
| +} // namespace prefs
|
| +} // namespace ukm
|
|
|