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 1380 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1391 // manager window to restore on startup. | 1391 // manager window to restore on startup. |
1392 const char kTaskManagerWindowPlacement[] = "task_manager.window_placement"; | 1392 const char kTaskManagerWindowPlacement[] = "task_manager.window_placement"; |
1393 | 1393 |
1394 // The most recent stored column visibility of the task manager table to be | 1394 // The most recent stored column visibility of the task manager table to be |
1395 // restored on startup. | 1395 // restored on startup. |
1396 const char kTaskManagerColumnVisibility[] = "task_manager.column_visibility"; | 1396 const char kTaskManagerColumnVisibility[] = "task_manager.column_visibility"; |
1397 | 1397 |
1398 // A boolean indicating if ending processes are enabled or disabled by policy. | 1398 // A boolean indicating if ending processes are enabled or disabled by policy. |
1399 const char kTaskManagerEndProcessEnabled[] = "task_manager.end_process_enabled"; | 1399 const char kTaskManagerEndProcessEnabled[] = "task_manager.end_process_enabled"; |
1400 | 1400 |
| 1401 // A boolean indicating whether network throtting is enabled |
| 1402 // or disabled by policy. |
| 1403 const char kNetworkThrottlingEnabled[] = "net.throttling_enabled"; |
| 1404 |
1401 // 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 |
1402 // restore on startup. | 1406 // restore on startup. |
1403 const char kAppWindowPlacement[] = "browser.app_window_placement"; | 1407 const char kAppWindowPlacement[] = "browser.app_window_placement"; |
1404 | 1408 |
1405 // String which specifies where to download files to by default. | 1409 // String which specifies where to download files to by default. |
1406 const char kDownloadDefaultDirectory[] = "download.default_directory"; | 1410 const char kDownloadDefaultDirectory[] = "download.default_directory"; |
1407 | 1411 |
1408 // Boolean that records if the download directory was changed by an | 1412 // Boolean that records if the download directory was changed by an |
1409 // upgrade a unsafe location to a safe location. | 1413 // upgrade a unsafe location to a safe location. |
1410 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... |
2277 const char kOriginTrialPublicKey[] = "origin_trials.public_key"; | 2281 const char kOriginTrialPublicKey[] = "origin_trials.public_key"; |
2278 | 2282 |
2279 // A list of origin trial features to disable by policy. | 2283 // A list of origin trial features to disable by policy. |
2280 const char kOriginTrialDisabledFeatures[] = "origin_trials.disabled_features"; | 2284 const char kOriginTrialDisabledFeatures[] = "origin_trials.disabled_features"; |
2281 | 2285 |
2282 // Policy that indicates the state of updates for the binary components. | 2286 // Policy that indicates the state of updates for the binary components. |
2283 const char kComponentUpdatesEnabled[] = | 2287 const char kComponentUpdatesEnabled[] = |
2284 "component_updates.component_updates_enabled"; | 2288 "component_updates.component_updates_enabled"; |
2285 | 2289 |
2286 } // namespace prefs | 2290 } // namespace prefs |
OLD | NEW |