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/macros.h" | 7 #include "base/macros.h" |
8 #include "build/build_config.h" | 8 #include "build/build_config.h" |
9 #include "chrome/common/features.h" | 9 #include "chrome/common/features.h" |
10 #include "chrome/common/pref_font_webkit_names.h" | 10 #include "chrome/common/pref_font_webkit_names.h" |
(...skipping 1379 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1390 // manager window to restore on startup. | 1390 // manager window to restore on startup. |
1391 const char kTaskManagerWindowPlacement[] = "task_manager.window_placement"; | 1391 const char kTaskManagerWindowPlacement[] = "task_manager.window_placement"; |
1392 | 1392 |
1393 // The most recent stored column visibility of the task manager table to be | 1393 // The most recent stored column visibility of the task manager table to be |
1394 // restored on startup. | 1394 // restored on startup. |
1395 const char kTaskManagerColumnVisibility[] = "task_manager.column_visibility"; | 1395 const char kTaskManagerColumnVisibility[] = "task_manager.column_visibility"; |
1396 | 1396 |
1397 // A boolean indicating if ending processes are enabled or disabled by policy. | 1397 // A boolean indicating if ending processes are enabled or disabled by policy. |
1398 const char kTaskManagerEndProcessEnabled[] = "task_manager.end_process_enabled"; | 1398 const char kTaskManagerEndProcessEnabled[] = "task_manager.end_process_enabled"; |
1399 | 1399 |
| 1400 // Dictionary indicating current network bandwidth throttling settings. |
| 1401 // Contains a boolean (is throttling enabled) and two integers (upload rate |
| 1402 // and download rate in kbits/s to throttle to) |
| 1403 const char kNetworkThrottlingEnabled[] = "net.throttling_enabled"; |
| 1404 |
1400 // A collection of position, size, and other data relating to app windows to | 1405 // A collection of position, size, and other data relating to app windows to |
1401 // restore on startup. | 1406 // restore on startup. |
1402 const char kAppWindowPlacement[] = "browser.app_window_placement"; | 1407 const char kAppWindowPlacement[] = "browser.app_window_placement"; |
1403 | 1408 |
1404 // String which specifies where to download files to by default. | 1409 // String which specifies where to download files to by default. |
1405 const char kDownloadDefaultDirectory[] = "download.default_directory"; | 1410 const char kDownloadDefaultDirectory[] = "download.default_directory"; |
1406 | 1411 |
1407 // Boolean that records if the download directory was changed by an | 1412 // Boolean that records if the download directory was changed by an |
1408 // upgrade a unsafe location to a safe location. | 1413 // upgrade a unsafe location to a safe location. |
1409 const char kDownloadDirUpgraded[] = "download.directory_upgrade"; | 1414 const char kDownloadDirUpgraded[] = "download.directory_upgrade"; |
(...skipping 866 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2276 const char kOriginTrialPublicKey[] = "origin_trials.public_key"; | 2281 const char kOriginTrialPublicKey[] = "origin_trials.public_key"; |
2277 | 2282 |
2278 // A list of origin trial features to disable by policy. | 2283 // A list of origin trial features to disable by policy. |
2279 const char kOriginTrialDisabledFeatures[] = "origin_trials.disabled_features"; | 2284 const char kOriginTrialDisabledFeatures[] = "origin_trials.disabled_features"; |
2280 | 2285 |
2281 // Policy that indicates the state of updates for the binary components. | 2286 // Policy that indicates the state of updates for the binary components. |
2282 const char kComponentUpdatesEnabled[] = | 2287 const char kComponentUpdatesEnabled[] = |
2283 "component_updates.component_updates_enabled"; | 2288 "component_updates.component_updates_enabled"; |
2284 | 2289 |
2285 } // namespace prefs | 2290 } // namespace prefs |
OLD | NEW |