OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 #include "base/basictypes.h" | 7 #include "base/basictypes.h" |
8 #include "chrome/common/pref_font_webkit_names.h" | 8 #include "chrome/common/pref_font_webkit_names.h" |
9 | 9 |
10 namespace prefs { | 10 namespace prefs { |
(...skipping 1334 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1345 // window to restore on startup. | 1345 // window to restore on startup. |
1346 const char kBrowserWindowPlacement[] = "browser.window_placement"; | 1346 const char kBrowserWindowPlacement[] = "browser.window_placement"; |
1347 | 1347 |
1348 // Browser window placement for popup windows. | 1348 // Browser window placement for popup windows. |
1349 const char kBrowserWindowPlacementPopup[] = "browser.window_placement_popup"; | 1349 const char kBrowserWindowPlacementPopup[] = "browser.window_placement_popup"; |
1350 | 1350 |
1351 // A collection of position, size, and other data relating to the task | 1351 // A collection of position, size, and other data relating to the task |
1352 // manager window to restore on startup. | 1352 // manager window to restore on startup. |
1353 const char kTaskManagerWindowPlacement[] = "task_manager.window_placement"; | 1353 const char kTaskManagerWindowPlacement[] = "task_manager.window_placement"; |
1354 | 1354 |
| 1355 // The most recent stored column visibility of the task manager table to be |
| 1356 // restored on startup. |
| 1357 const char kTaskManagerColumnVisibility[] = "task_manager.column_visibility"; |
| 1358 |
1355 // A collection of position, size, and other data relating to app windows to | 1359 // A collection of position, size, and other data relating to app windows to |
1356 // restore on startup. | 1360 // restore on startup. |
1357 const char kAppWindowPlacement[] = "browser.app_window_placement"; | 1361 const char kAppWindowPlacement[] = "browser.app_window_placement"; |
1358 | 1362 |
1359 // String which specifies where to download files to by default. | 1363 // String which specifies where to download files to by default. |
1360 const char kDownloadDefaultDirectory[] = "download.default_directory"; | 1364 const char kDownloadDefaultDirectory[] = "download.default_directory"; |
1361 | 1365 |
1362 // Boolean that records if the download directory was changed by an | 1366 // Boolean that records if the download directory was changed by an |
1363 // upgrade a unsafe location to a safe location. | 1367 // upgrade a unsafe location to a safe location. |
1364 const char kDownloadDirUpgraded[] = "download.directory_upgrade"; | 1368 const char kDownloadDirUpgraded[] = "download.directory_upgrade"; |
(...skipping 843 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2208 "supervised_users.whitelists"; | 2212 "supervised_users.whitelists"; |
2209 | 2213 |
2210 #if defined(ENABLE_EXTENSIONS) | 2214 #if defined(ENABLE_EXTENSIONS) |
2211 // Policy that indicates how to handle animated images. | 2215 // Policy that indicates how to handle animated images. |
2212 const char kAnimationPolicy[] = "settings.a11y.animation_policy"; | 2216 const char kAnimationPolicy[] = "settings.a11y.animation_policy"; |
2213 #endif | 2217 #endif |
2214 | 2218 |
2215 const char kBackgroundTracingLastUpload[] = "background_tracing.last_upload"; | 2219 const char kBackgroundTracingLastUpload[] = "background_tracing.last_upload"; |
2216 | 2220 |
2217 } // namespace prefs | 2221 } // namespace prefs |
OLD | NEW |