switches.h 750 B

12345678910111213141516171819202122
  1. // Copyright 2020 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 COMPONENTS_SYNC_BOOKMARKS_SWITCHES_H_
  5. #define COMPONENTS_SYNC_BOOKMARKS_SWITCHES_H_
  6. #include "base/feature_list.h"
  7. namespace switches {
  8. inline constexpr base::Feature kSyncOmitLargeBookmarkFaviconUrl{
  9. "SyncOmitLargeBookmarkFaviconUrl", base::FEATURE_ENABLED_BY_DEFAULT};
  10. // TODO(crbug.com/1232951): remove the feature toggle once most of bookmarks
  11. // have been reuploaded.
  12. inline constexpr base::Feature kSyncReuploadBookmarks{
  13. "SyncReuploadBookmarks", base::FEATURE_ENABLED_BY_DEFAULT};
  14. } // namespace switches
  15. #endif // COMPONENTS_SYNC_BOOKMARKS_SWITCHES_H_