OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "chrome/common/pref_names.h" | 5 #include "chrome/common/pref_names.h" |
6 | 6 |
7 namespace prefs { | 7 namespace prefs { |
8 | 8 |
9 // *************** PROFILE PREFS *************** | 9 // *************** PROFILE PREFS *************** |
10 // These are attached to the user profile | 10 // These are attached to the user profile |
(...skipping 1126 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1137 | 1137 |
1138 // Serves promo resources for the NTP. | 1138 // Serves promo resources for the NTP. |
1139 const char kNTPPromoResourceServer[] = "ntp.web_resource_server"; | 1139 const char kNTPPromoResourceServer[] = "ntp.web_resource_server"; |
1140 | 1140 |
1141 // Serves tips for the NTP. | 1141 // Serves tips for the NTP. |
1142 const char kNTPTipsResourceServer[] = "ntp.tips_resource_server"; | 1142 const char kNTPTipsResourceServer[] = "ntp.tips_resource_server"; |
1143 | 1143 |
1144 // Serves dates to determine display of elements on the NTP. | 1144 // Serves dates to determine display of elements on the NTP. |
1145 const char kNTPDateResourceServer[] = "ntp.date_resource_server"; | 1145 const char kNTPDateResourceServer[] = "ntp.date_resource_server"; |
1146 | 1146 |
| 1147 // Which bookmarks folder should be visible on the new tab page v4. |
| 1148 const char kNTPShownBookmarksFolder[] = "ntp.shown_bookmarks_folder"; |
| 1149 |
1147 // Which page should be visible on the new tab page v4 | 1150 // Which page should be visible on the new tab page v4 |
1148 const char kNTPShownPage[] = "ntp.shown_page"; | 1151 const char kNTPShownPage[] = "ntp.shown_page"; |
1149 | 1152 |
1150 // Which sections should be visible on the new tab page | 1153 // Which sections should be visible on the new tab page |
1151 // 1 - Show the most visited sites in a grid | 1154 // 1 - Show the most visited sites in a grid |
1152 // 2 - Show the most visited sites as a list | 1155 // 2 - Show the most visited sites as a list |
1153 // 4 - Show the recent section | 1156 // 4 - Show the recent section |
1154 // 8 - (Show tips -- DEPRECATED) | 1157 // 8 - (Show tips -- DEPRECATED) |
1155 // 16 - Show sync status | 1158 // 16 - Show sync status |
1156 const char kNTPShownSections[] = "ntp.shown_sections"; | 1159 const char kNTPShownSections[] = "ntp.shown_sections"; |
(...skipping 299 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1456 // Whether user-specified handlers for protocols and content types can be | 1459 // Whether user-specified handlers for protocols and content types can be |
1457 // specified. | 1460 // specified. |
1458 const char kCustomHandlersEnabled[] = "custom_handlers.enabled"; | 1461 const char kCustomHandlersEnabled[] = "custom_handlers.enabled"; |
1459 | 1462 |
1460 // Integers that specify the policy refresh rate for device- and user-policy in | 1463 // Integers that specify the policy refresh rate for device- and user-policy in |
1461 // milliseconds. Not all values are meaningful, so it is clamped to a sane range | 1464 // milliseconds. Not all values are meaningful, so it is clamped to a sane range |
1462 // by the cloud policy subsystem. | 1465 // by the cloud policy subsystem. |
1463 const char kDevicePolicyRefreshRate[] = "policy.device_refresh_rate"; | 1466 const char kDevicePolicyRefreshRate[] = "policy.device_refresh_rate"; |
1464 const char kUserPolicyRefreshRate[] = "policy.user_refresh_rate"; | 1467 const char kUserPolicyRefreshRate[] = "policy.user_refresh_rate"; |
1465 } // namespace prefs | 1468 } // namespace prefs |
OLD | NEW |