fresnel_pref_names.cc 801 B

1234567891011121314151617181920212223
  1. // Copyright 2021 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. #include "ash/components/device_activity/fresnel_pref_names.h"
  5. namespace ash {
  6. namespace prefs {
  7. // Timestamp of last known daily ping to Fresnel.
  8. const char kDeviceActiveLastKnownDailyPingTimestamp[] =
  9. "device_active.last_known_daily_ping_timestamp";
  10. // Timestamp of last known monthly ping to Fresnel.
  11. const char kDeviceActiveLastKnownMonthlyPingTimestamp[] =
  12. "device_active.last_known_monthly_ping_timestamp";
  13. // Timestamp of last known all time ping to Fresnel.
  14. const char kDeviceActiveLastKnownAllTimePingTimestamp[] =
  15. "device_active.last_known_all_time_ping_timestamp";
  16. } // namespace prefs
  17. } // namespace ash