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 1371 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1382 // manager window to restore on startup. | 1382 // manager window to restore on startup. |
1383 const char kTaskManagerWindowPlacement[] = "task_manager.window_placement"; | 1383 const char kTaskManagerWindowPlacement[] = "task_manager.window_placement"; |
1384 | 1384 |
1385 // The most recent stored column visibility of the task manager table to be | 1385 // The most recent stored column visibility of the task manager table to be |
1386 // restored on startup. | 1386 // restored on startup. |
1387 const char kTaskManagerColumnVisibility[] = "task_manager.column_visibility"; | 1387 const char kTaskManagerColumnVisibility[] = "task_manager.column_visibility"; |
1388 | 1388 |
1389 // A boolean indicating if ending processes are enabled or disabled by policy. | 1389 // A boolean indicating if ending processes are enabled or disabled by policy. |
1390 const char kTaskManagerEndProcessEnabled[] = "task_manager.end_process_enabled"; | 1390 const char kTaskManagerEndProcessEnabled[] = "task_manager.end_process_enabled"; |
1391 | 1391 |
| 1392 // Dictionary indicating current network bandwidth throttling settings. |
| 1393 // Contains a boolean (is throttling enabled) and two integers (upload rate |
| 1394 // and download rate in kbits/s to throttle to) |
| 1395 const char kNetworkThrottlingEnabled[] = "net.throttling_enabled"; |
| 1396 |
1392 // A collection of position, size, and other data relating to app windows to | 1397 // A collection of position, size, and other data relating to app windows to |
1393 // restore on startup. | 1398 // restore on startup. |
1394 const char kAppWindowPlacement[] = "browser.app_window_placement"; | 1399 const char kAppWindowPlacement[] = "browser.app_window_placement"; |
1395 | 1400 |
1396 // String which specifies where to download files to by default. | 1401 // String which specifies where to download files to by default. |
1397 const char kDownloadDefaultDirectory[] = "download.default_directory"; | 1402 const char kDownloadDefaultDirectory[] = "download.default_directory"; |
1398 | 1403 |
1399 // Boolean that records if the download directory was changed by an | 1404 // Boolean that records if the download directory was changed by an |
1400 // upgrade a unsafe location to a safe location. | 1405 // upgrade a unsafe location to a safe location. |
1401 const char kDownloadDirUpgraded[] = "download.directory_upgrade"; | 1406 const char kDownloadDirUpgraded[] = "download.directory_upgrade"; |
(...skipping 867 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2269 const char kOriginTrialPublicKey[] = "origin_trials.public_key"; | 2274 const char kOriginTrialPublicKey[] = "origin_trials.public_key"; |
2270 | 2275 |
2271 // A list of origin trial features to disable by policy. | 2276 // A list of origin trial features to disable by policy. |
2272 const char kOriginTrialDisabledFeatures[] = "origin_trials.disabled_features"; | 2277 const char kOriginTrialDisabledFeatures[] = "origin_trials.disabled_features"; |
2273 | 2278 |
2274 // Policy that indicates the state of updates for the binary components. | 2279 // Policy that indicates the state of updates for the binary components. |
2275 const char kComponentUpdatesEnabled[] = | 2280 const char kComponentUpdatesEnabled[] = |
2276 "component_updates.component_updates_enabled"; | 2281 "component_updates.component_updates_enabled"; |
2277 | 2282 |
2278 } // namespace prefs | 2283 } // namespace prefs |
OLD | NEW |