| OLD | NEW |
| 1 // Copyright 2017 The Chromium Authors. All rights reserved. | 1 // Copyright 2017 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/browser/flag_descriptions.h" | 5 #include "chrome/browser/flag_descriptions.h" |
| 6 | 6 |
| 7 namespace flag_descriptions { | 7 namespace flag_descriptions { |
| 8 | 8 |
| 9 const char kBrowserSideNavigationName[] = "Enable browser side navigation"; | 9 const char kBrowserSideNavigationName[] = "Enable browser side navigation"; |
| 10 | 10 |
| (...skipping 1454 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1465 #if defined(OS_MACOSX) | 1465 #if defined(OS_MACOSX) |
| 1466 | 1466 |
| 1467 const char kAppInfoDialogName[] = "Toolkit-Views App Info Dialog."; | 1467 const char kAppInfoDialogName[] = "Toolkit-Views App Info Dialog."; |
| 1468 | 1468 |
| 1469 const char kAppInfoDialogDescription[] = | 1469 const char kAppInfoDialogDescription[] = |
| 1470 "Makes the Toolkit-Views based App Info dialog accessible from " | 1470 "Makes the Toolkit-Views based App Info dialog accessible from " |
| 1471 "chrome://apps or chrome://extensions in place of the native extension " | 1471 "chrome://apps or chrome://extensions in place of the native extension " |
| 1472 "permissions dialog, or the details link (which is a link to the Web " | 1472 "permissions dialog, or the details link (which is a link to the Web " |
| 1473 "Store)."; | 1473 "Store)."; |
| 1474 | 1474 |
| 1475 const char kMacV2SandboxName[] = "Mac V2 Sandbox"; |
| 1476 |
| 1477 const char kMacV2SandboxDescription[] = |
| 1478 "Eliminates the unsandboxed warmup phase and sandboxes processes for their " |
| 1479 "entire life cycle."; |
| 1480 |
| 1475 const char kMacViewsNativeAppWindowsName[] = "Toolkit-Views App Windows."; | 1481 const char kMacViewsNativeAppWindowsName[] = "Toolkit-Views App Windows."; |
| 1476 | 1482 |
| 1477 const char kMacViewsNativeAppWindowsDescription[] = | 1483 const char kMacViewsNativeAppWindowsDescription[] = |
| 1478 "Controls whether to use Toolkit-Views based Chrome App windows."; | 1484 "Controls whether to use Toolkit-Views based Chrome App windows."; |
| 1479 | 1485 |
| 1480 const char kMacViewsTaskManagerName[] = "Toolkit-Views Task Manager."; | 1486 const char kMacViewsTaskManagerName[] = "Toolkit-Views Task Manager."; |
| 1481 | 1487 |
| 1482 const char kMacViewsTaskManagerDescription[] = | 1488 const char kMacViewsTaskManagerDescription[] = |
| 1483 "Controls whether to use the Toolkit-Views based Task Manager."; | 1489 "Controls whether to use the Toolkit-Views based Task Manager."; |
| 1484 | 1490 |
| (...skipping 1760 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3245 "in non-sticky mode (do not change work area in non-sticky mode)."; | 3251 "in non-sticky mode (do not change work area in non-sticky mode)."; |
| 3246 | 3252 |
| 3247 const char kUiDevToolsName[] = "Enable native UI inspection"; | 3253 const char kUiDevToolsName[] = "Enable native UI inspection"; |
| 3248 const char kUiDevToolsDescription[] = | 3254 const char kUiDevToolsDescription[] = |
| 3249 "Enables inspection of native UI elements. For local inspection use " | 3255 "Enables inspection of native UI elements. For local inspection use " |
| 3250 "chrome://inspect#other"; | 3256 "chrome://inspect#other"; |
| 3251 | 3257 |
| 3252 #endif // defined(OS_CHROMEOS) | 3258 #endif // defined(OS_CHROMEOS) |
| 3253 | 3259 |
| 3254 } // namespace flag_descriptions | 3260 } // namespace flag_descriptions |
| OLD | NEW |