// Copyright 2014 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. // Constants for the names of various bookmarks preferences. #ifndef COMPONENTS_BOOKMARKS_COMMON_BOOKMARK_PREF_NAMES_H_ #define COMPONENTS_BOOKMARKS_COMMON_BOOKMARK_PREF_NAMES_H_ namespace bookmarks::prefs { // Boolean which specifies whether the user has added any new bookmarks // following the launch of the power bookmarks feature. inline constexpr char kAddedBookmarkSincePowerBookmarksLaunch[] = …; // Boolean which specifies the ids of the bookmark nodes that are expanded in // the bookmark editor. inline constexpr char kBookmarkEditorExpandedNodes[] = …; // Modifying bookmarks is completely disabled when this is set to false. inline constexpr char kEditBookmarksEnabled[] = …; // A list of bookmarks to include in a Managed Bookmarks root node. Each // list item is a dictionary containing a "name" and an "url" entry, detailing // the bookmark name and target URL respectively. inline constexpr char kManagedBookmarks[] = …; // String which specifies the Managed Bookmarks folder name inline constexpr char kManagedBookmarksFolderName[] = …; // Boolean which specifies whether the apps shortcut is visible on the bookmark // bar. inline constexpr char kShowAppsShortcutInBookmarkBar[] = …; // Boolean which specifies whether the saved tab groups are visible on the // bookmark bar. inline constexpr char kShowTabGroupsInBookmarkBar[] = …; // Boolean which specifies whether the Managed Bookmarks folder is visible on // the bookmark bar. inline constexpr char kShowManagedBookmarksInBookmarkBar[] = …; // Boolean which specifies whether the bookmark bar is visible on all tabs. inline constexpr char kShowBookmarkBar[] = …; } // namespace bookmarks::prefs #endif // COMPONENTS_BOOKMARKS_COMMON_BOOKMARK_PREF_NAMES_H_