Chromium Code Reviews| 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 #include "printing/features/features.h" | 10 #include "printing/features/features.h" |
| (...skipping 365 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 376 "enable-extension-activity-logging"; | 376 "enable-extension-activity-logging"; |
| 377 | 377 |
| 378 const char kEnableExtensionActivityLogTesting[] = | 378 const char kEnableExtensionActivityLogTesting[] = |
| 379 "enable-extension-activity-log-testing"; | 379 "enable-extension-activity-log-testing"; |
| 380 | 380 |
| 381 // Enable the fast unload controller, which speeds up tab/window close by | 381 // Enable the fast unload controller, which speeds up tab/window close by |
| 382 // running a tab's onunload js handler independently of the GUI - | 382 // running a tab's onunload js handler independently of the GUI - |
| 383 // crbug.com/142458 . | 383 // crbug.com/142458 . |
| 384 const char kEnableFastUnload[] = "enable-fast-unload"; | 384 const char kEnableFastUnload[] = "enable-fast-unload"; |
| 385 | 385 |
| 386 #if defined(OS_CHROMEOS) | |
| 387 // Enables apps for the sign-in profile (on login and lock screens). | |
| 388 const char kEnableSigninApps[] = "enable-login-apps"; | |
|
emaxx
2016/11/09 01:09:30
nit: The constant name differs from the command li
Denis Kuznetsov (DE-MUC)
2016/11/09 18:25:26
Done.
| |
| 389 #endif // defined(OS_CHROMEOS) | |
| 390 | |
| 386 // Enables the Material Design feedback form. | 391 // Enables the Material Design feedback form. |
| 387 const char kEnableMaterialDesignFeedback[] = "enable-md-feedback"; | 392 const char kEnableMaterialDesignFeedback[] = "enable-md-feedback"; |
| 388 | 393 |
| 389 // Enables the Material Design policy page at chrome://md-policy. | 394 // Enables the Material Design policy page at chrome://md-policy. |
| 390 const char kEnableMaterialDesignPolicyPage[] = "enable-md-policy-page"; | 395 const char kEnableMaterialDesignPolicyPage[] = "enable-md-policy-page"; |
| 391 | 396 |
| 392 // Runs the Native Client inside the renderer process and enables GPU plugin | 397 // Runs the Native Client inside the renderer process and enables GPU plugin |
| 393 // (internally adds lEnableGpuPlugin to the command line). | 398 // (internally adds lEnableGpuPlugin to the command line). |
| 394 const char kEnableNaCl[] = "enable-nacl"; | 399 const char kEnableNaCl[] = "enable-nacl"; |
| 395 | 400 |
| (...skipping 913 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 1309 | 1314 |
| 1310 // ----------------------------------------------------------------------------- | 1315 // ----------------------------------------------------------------------------- |
| 1311 // DO NOT ADD YOUR VERY NICE FLAGS TO THE BOTTOM OF THIS FILE. | 1316 // DO NOT ADD YOUR VERY NICE FLAGS TO THE BOTTOM OF THIS FILE. |
| 1312 // | 1317 // |
| 1313 // You were going to just dump your switches here, weren't you? Instead, please | 1318 // You were going to just dump your switches here, weren't you? Instead, please |
| 1314 // put them in alphabetical order above, or in order inside the appropriate | 1319 // put them in alphabetical order above, or in order inside the appropriate |
| 1315 // ifdef at the bottom. The order should match the header. | 1320 // ifdef at the bottom. The order should match the header. |
| 1316 // ----------------------------------------------------------------------------- | 1321 // ----------------------------------------------------------------------------- |
| 1317 | 1322 |
| 1318 } // namespace switches | 1323 } // namespace switches |
| OLD | NEW |