Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(237)

Side by Side Diff: chrome/common/pref_names.cc

Issue 1861383002: Add TaskManagerEndProcessEnabled policy (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Update supported_on to 52 Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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/pref_font_webkit_names.h" 9 #include "chrome/common/pref_font_webkit_names.h"
10 10
(...skipping 1349 matching lines...) Expand 10 before | Expand all | Expand 10 after
1360 const char kBrowserWindowPlacementPopup[] = "browser.window_placement_popup"; 1360 const char kBrowserWindowPlacementPopup[] = "browser.window_placement_popup";
1361 1361
1362 // A collection of position, size, and other data relating to the task 1362 // A collection of position, size, and other data relating to the task
1363 // manager window to restore on startup. 1363 // manager window to restore on startup.
1364 const char kTaskManagerWindowPlacement[] = "task_manager.window_placement"; 1364 const char kTaskManagerWindowPlacement[] = "task_manager.window_placement";
1365 1365
1366 // The most recent stored column visibility of the task manager table to be 1366 // The most recent stored column visibility of the task manager table to be
1367 // restored on startup. 1367 // restored on startup.
1368 const char kTaskManagerColumnVisibility[] = "task_manager.column_visibility"; 1368 const char kTaskManagerColumnVisibility[] = "task_manager.column_visibility";
1369 1369
1370 // A boolean indicating if ending processes are enabled or disabled by policy.
1371 const char kTaskManagerEndProcessEnabled[] = "task_manager.end_process_enabled";
1372
1370 // A collection of position, size, and other data relating to app windows to 1373 // A collection of position, size, and other data relating to app windows to
1371 // restore on startup. 1374 // restore on startup.
1372 const char kAppWindowPlacement[] = "browser.app_window_placement"; 1375 const char kAppWindowPlacement[] = "browser.app_window_placement";
1373 1376
1374 // String which specifies where to download files to by default. 1377 // String which specifies where to download files to by default.
1375 const char kDownloadDefaultDirectory[] = "download.default_directory"; 1378 const char kDownloadDefaultDirectory[] = "download.default_directory";
1376 1379
1377 // Boolean that records if the download directory was changed by an 1380 // Boolean that records if the download directory was changed by an
1378 // upgrade a unsafe location to a safe location. 1381 // upgrade a unsafe location to a safe location.
1379 const char kDownloadDirUpgraded[] = "download.directory_upgrade"; 1382 const char kDownloadDirUpgraded[] = "download.directory_upgrade";
(...skipping 819 matching lines...) Expand 10 before | Expand all | Expand 10 after
2199 const char kMediaRouterEnableCloudServices[] = 2202 const char kMediaRouterEnableCloudServices[] =
2200 "media_router.cloudservices.enabled"; 2203 "media_router.cloudservices.enabled";
2201 #endif // defined(GOOGLE_CHROME_BUILD) 2204 #endif // defined(GOOGLE_CHROME_BUILD)
2202 // Whether or not the Media Router first run flow has been acknowledged by the 2205 // Whether or not the Media Router first run flow has been acknowledged by the
2203 // user. 2206 // user.
2204 const char kMediaRouterFirstRunFlowAcknowledged[] = 2207 const char kMediaRouterFirstRunFlowAcknowledged[] =
2205 "media_router.firstrunflow.acknowledged"; 2208 "media_router.firstrunflow.acknowledged";
2206 #endif 2209 #endif
2207 2210
2208 } // namespace prefs 2211 } // namespace prefs
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698