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 1339 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1350 // window to restore on startup. | 1350 // window to restore on startup. |
1351 const char kBrowserWindowPlacement[] = "browser.window_placement"; | 1351 const char kBrowserWindowPlacement[] = "browser.window_placement"; |
1352 | 1352 |
1353 // Browser window placement for popup windows. | 1353 // Browser window placement for popup windows. |
1354 const char kBrowserWindowPlacementPopup[] = "browser.window_placement_popup"; | 1354 const char kBrowserWindowPlacementPopup[] = "browser.window_placement_popup"; |
1355 | 1355 |
1356 // A collection of position, size, and other data relating to the task | 1356 // A collection of position, size, and other data relating to the task |
1357 // manager window to restore on startup. | 1357 // manager window to restore on startup. |
1358 const char kTaskManagerWindowPlacement[] = "task_manager.window_placement"; | 1358 const char kTaskManagerWindowPlacement[] = "task_manager.window_placement"; |
1359 | 1359 |
| 1360 // The most recent stored column visibility of the task manager table to be |
| 1361 // restored on startup. |
| 1362 const char kTaskManagerColumnVisibility[] = "task_manager.column_visibility"; |
| 1363 |
1360 // A collection of position, size, and other data relating to app windows to | 1364 // A collection of position, size, and other data relating to app windows to |
1361 // restore on startup. | 1365 // restore on startup. |
1362 const char kAppWindowPlacement[] = "browser.app_window_placement"; | 1366 const char kAppWindowPlacement[] = "browser.app_window_placement"; |
1363 | 1367 |
1364 // String which specifies where to download files to by default. | 1368 // String which specifies where to download files to by default. |
1365 const char kDownloadDefaultDirectory[] = "download.default_directory"; | 1369 const char kDownloadDefaultDirectory[] = "download.default_directory"; |
1366 | 1370 |
1367 // Boolean that records if the download directory was changed by an | 1371 // Boolean that records if the download directory was changed by an |
1368 // upgrade a unsafe location to a safe location. | 1372 // upgrade a unsafe location to a safe location. |
1369 const char kDownloadDirUpgraded[] = "download.directory_upgrade"; | 1373 const char kDownloadDirUpgraded[] = "download.directory_upgrade"; |
(...skipping 843 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 |