reading_list_pref_names.h 777 B

123456789101112131415161718192021222324
  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. // Constants for the names of various reading list preferences.
  5. #ifndef COMPONENTS_READING_LIST_CORE_READING_LIST_PREF_NAMES_H_
  6. #define COMPONENTS_READING_LIST_CORE_READING_LIST_PREF_NAMES_H_
  7. #include "build/build_config.h"
  8. namespace reading_list {
  9. namespace prefs {
  10. extern const char kReadingListHasUnseenEntries[];
  11. #if !BUILDFLAG(IS_ANDROID) && !BUILDFLAG(IS_IOS)
  12. extern const char kReadingListDesktopFirstUseExperienceShown[];
  13. #endif // !BUILDFLAG(IS_ANDROID) && !BUILDFLAG(IS_IOS)
  14. } // namespace prefs
  15. } // namespace reading_list
  16. #endif // COMPONENTS_READING_LIST_CORE_READING_LIST_PREF_NAMES_H_