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 1340 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1351 // window to restore on startup. | 1351 // window to restore on startup. |
1352 const char kBrowserWindowPlacement[] = "browser.window_placement"; | 1352 const char kBrowserWindowPlacement[] = "browser.window_placement"; |
1353 | 1353 |
1354 // Browser window placement for popup windows. | 1354 // Browser window placement for popup windows. |
1355 const char kBrowserWindowPlacementPopup[] = "browser.window_placement_popup"; | 1355 const char kBrowserWindowPlacementPopup[] = "browser.window_placement_popup"; |
1356 | 1356 |
1357 // A collection of position, size, and other data relating to the task | 1357 // A collection of position, size, and other data relating to the task |
1358 // manager window to restore on startup. | 1358 // manager window to restore on startup. |
1359 const char kTaskManagerWindowPlacement[] = "task_manager.window_placement"; | 1359 const char kTaskManagerWindowPlacement[] = "task_manager.window_placement"; |
1360 | 1360 |
| 1361 // The most recent stored column visibility of the task manager table to be |
| 1362 // restored on startup. |
| 1363 const char kTaskManagerColumnVisibility[] = "task_manager.column_visibility"; |
| 1364 |
1361 // A collection of position, size, and other data relating to app windows to | 1365 // A collection of position, size, and other data relating to app windows to |
1362 // restore on startup. | 1366 // restore on startup. |
1363 const char kAppWindowPlacement[] = "browser.app_window_placement"; | 1367 const char kAppWindowPlacement[] = "browser.app_window_placement"; |
1364 | 1368 |
1365 // String which specifies where to download files to by default. | 1369 // String which specifies where to download files to by default. |
1366 const char kDownloadDefaultDirectory[] = "download.default_directory"; | 1370 const char kDownloadDefaultDirectory[] = "download.default_directory"; |
1367 | 1371 |
1368 // Boolean that records if the download directory was changed by an | 1372 // Boolean that records if the download directory was changed by an |
1369 // upgrade a unsafe location to a safe location. | 1373 // upgrade a unsafe location to a safe location. |
1370 const char kDownloadDirUpgraded[] = "download.directory_upgrade"; | 1374 const char kDownloadDirUpgraded[] = "download.directory_upgrade"; |
(...skipping 842 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2213 "supervised_users.whitelists"; | 2217 "supervised_users.whitelists"; |
2214 | 2218 |
2215 #if defined(ENABLE_EXTENSIONS) | 2219 #if defined(ENABLE_EXTENSIONS) |
2216 // Policy that indicates how to handle animated images. | 2220 // Policy that indicates how to handle animated images. |
2217 const char kAnimationPolicy[] = "settings.a11y.animation_policy"; | 2221 const char kAnimationPolicy[] = "settings.a11y.animation_policy"; |
2218 #endif | 2222 #endif |
2219 | 2223 |
2220 const char kBackgroundTracingLastUpload[] = "background_tracing.last_upload"; | 2224 const char kBackgroundTracingLastUpload[] = "background_tracing.last_upload"; |
2221 | 2225 |
2222 } // namespace prefs | 2226 } // namespace prefs |
OLD | NEW |