reading_list_pref_names.cc 836 B

1234567891011121314151617181920212223
  1. // Copyright 2016 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 "components/reading_list/core/reading_list_pref_names.h"
  5. #include "build/build_config.h"
  6. namespace reading_list {
  7. namespace prefs {
  8. // Boolean to track if some reading list entries have never been seen on this
  9. // device. Not synced.
  10. const char kReadingListHasUnseenEntries[] = "reading_list.has_unseen_entries";
  11. #if !BUILDFLAG(IS_ANDROID) && !BUILDFLAG(IS_IOS)
  12. // Boolean to track if the first-use experience has been shown on desktop.
  13. const char kReadingListDesktopFirstUseExperienceShown[] =
  14. "reading_list.desktop_first_use_experience_shown";
  15. #endif // !BUILDFLAG(IS_ANDROID) && !BUILDFLAG(IS_IOS)
  16. } // namespace prefs
  17. } // namespace reading_list