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/chrome_switches.h" | 5 #include "chrome/common/chrome_switches.h" |
6 | 6 |
7 #include "base/base_switches.h" | 7 #include "base/base_switches.h" |
8 #include "base/command_line.h" | 8 #include "base/command_line.h" |
9 #include "build/build_config.h" | 9 #include "build/build_config.h" |
10 | 10 |
(...skipping 382 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
393 "enable-extension-activity-logging"; | 393 "enable-extension-activity-logging"; |
394 | 394 |
395 const char kEnableExtensionActivityLogTesting[] = | 395 const char kEnableExtensionActivityLogTesting[] = |
396 "enable-extension-activity-log-testing"; | 396 "enable-extension-activity-log-testing"; |
397 | 397 |
398 // Enable the fast unload controller, which speeds up tab/window close by | 398 // Enable the fast unload controller, which speeds up tab/window close by |
399 // running a tab's onunload js handler independently of the GUI - | 399 // running a tab's onunload js handler independently of the GUI - |
400 // crbug.com/142458 . | 400 // crbug.com/142458 . |
401 const char kEnableFastUnload[] = "enable-fast-unload"; | 401 const char kEnableFastUnload[] = "enable-fast-unload"; |
402 | 402 |
| 403 #if defined(OS_CHROMEOS) |
| 404 // Enables apps on the login screen. |
| 405 const char kEnableLoginApps[] = "enable-login-apps"; |
| 406 #endif // defined(OS_CHROMEOS) |
| 407 |
403 // Enables the Material Design version of chrome://extensions. | 408 // Enables the Material Design version of chrome://extensions. |
404 const char kEnableMaterialDesignExtensions[] = "enable-md-extensions"; | 409 const char kEnableMaterialDesignExtensions[] = "enable-md-extensions"; |
405 | 410 |
406 // Enables the Material Design feedback form. | 411 // Enables the Material Design feedback form. |
407 const char kEnableMaterialDesignFeedback[] = "enable-md-feedback"; | 412 const char kEnableMaterialDesignFeedback[] = "enable-md-feedback"; |
408 | 413 |
409 // Enables the Material Design policy page at chrome://md-policy. | 414 // Enables the Material Design policy page at chrome://md-policy. |
410 const char kEnableMaterialDesignPolicyPage[] = "enable-md-policy-page"; | 415 const char kEnableMaterialDesignPolicyPage[] = "enable-md-policy-page"; |
411 | 416 |
412 // Runs the Native Client inside the renderer process and enables GPU plugin | 417 // Runs the Native Client inside the renderer process and enables GPU plugin |
(...skipping 921 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1334 | 1339 |
1335 // ----------------------------------------------------------------------------- | 1340 // ----------------------------------------------------------------------------- |
1336 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1341 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
1337 // | 1342 // |
1338 // You were going to just dump your switches here, weren't you? Instead, please | 1343 // You were going to just dump your switches here, weren't you? Instead, please |
1339 // put them in alphabetical order above, or in order inside the appropriate | 1344 // put them in alphabetical order above, or in order inside the appropriate |
1340 // ifdef at the bottom. The order should match the header. | 1345 // ifdef at the bottom. The order should match the header. |
1341 // ----------------------------------------------------------------------------- | 1346 // ----------------------------------------------------------------------------- |
1342 | 1347 |
1343 } // namespace switches | 1348 } // namespace switches |
OLD | NEW |