fresnel_pref_names.h 980 B

1234567891011121314151617181920212223242526
  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. #ifndef ASH_COMPONENTS_DEVICE_ACTIVITY_FRESNEL_PREF_NAMES_H_
  5. #define ASH_COMPONENTS_DEVICE_ACTIVITY_FRESNEL_PREF_NAMES_H_
  6. #include "base/component_export.h"
  7. namespace ash {
  8. namespace prefs {
  9. // ---------------------------------------------------------------------------
  10. // Prefs related to ChromeOS device active pings.
  11. // ---------------------------------------------------------------------------
  12. COMPONENT_EXPORT(ASH_DEVICE_ACTIVITY)
  13. extern const char kDeviceActiveLastKnownDailyPingTimestamp[];
  14. COMPONENT_EXPORT(ASH_DEVICE_ACTIVITY)
  15. extern const char kDeviceActiveLastKnownMonthlyPingTimestamp[];
  16. COMPONENT_EXPORT(ASH_DEVICE_ACTIVITY)
  17. extern const char kDeviceActiveLastKnownAllTimePingTimestamp[];
  18. } // namespace prefs
  19. } // namespace ash
  20. #endif // ASH_COMPONENTS_DEVICE_ACTIVITY_FRESNEL_PREF_NAMES_H_