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 363 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
374 "enable-extension-activity-logging"; | 374 "enable-extension-activity-logging"; |
375 | 375 |
376 const char kEnableExtensionActivityLogTesting[] = | 376 const char kEnableExtensionActivityLogTesting[] = |
377 "enable-extension-activity-log-testing"; | 377 "enable-extension-activity-log-testing"; |
378 | 378 |
379 // Enable the fast unload controller, which speeds up tab/window close by | 379 // Enable the fast unload controller, which speeds up tab/window close by |
380 // running a tab's onunload js handler independently of the GUI - | 380 // running a tab's onunload js handler independently of the GUI - |
381 // crbug.com/142458 . | 381 // crbug.com/142458 . |
382 const char kEnableFastUnload[] = "enable-fast-unload"; | 382 const char kEnableFastUnload[] = "enable-fast-unload"; |
383 | 383 |
384 #if defined(OS_CHROMEOS) | |
385 // Enables apps on the login screen. | |
emaxx
2016/11/04 13:54:51
s/on the login screen/in the login profile/?
This
Denis Kuznetsov (DE-MUC)
2016/11/08 18:47:49
Done.
| |
386 const char kEnableLoginApps[] = "enable-login-apps"; | |
387 #endif // defined(OS_CHROMEOS) | |
388 | |
384 // Enables the Material Design feedback form. | 389 // Enables the Material Design feedback form. |
385 const char kEnableMaterialDesignFeedback[] = "enable-md-feedback"; | 390 const char kEnableMaterialDesignFeedback[] = "enable-md-feedback"; |
386 | 391 |
387 // Enables the Material Design policy page at chrome://md-policy. | 392 // Enables the Material Design policy page at chrome://md-policy. |
388 const char kEnableMaterialDesignPolicyPage[] = "enable-md-policy-page"; | 393 const char kEnableMaterialDesignPolicyPage[] = "enable-md-policy-page"; |
389 | 394 |
390 // Runs the Native Client inside the renderer process and enables GPU plugin | 395 // Runs the Native Client inside the renderer process and enables GPU plugin |
391 // (internally adds lEnableGpuPlugin to the command line). | 396 // (internally adds lEnableGpuPlugin to the command line). |
392 const char kEnableNaCl[] = "enable-nacl"; | 397 const char kEnableNaCl[] = "enable-nacl"; |
393 | 398 |
(...skipping 930 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1324 | 1329 |
1325 // ----------------------------------------------------------------------------- | 1330 // ----------------------------------------------------------------------------- |
1326 // DO NOT ADD YOUR VERY NICE FLAGS TO THE BOTTOM OF THIS FILE. | 1331 // DO NOT ADD YOUR VERY NICE FLAGS TO THE BOTTOM OF THIS FILE. |
1327 // | 1332 // |
1328 // You were going to just dump your switches here, weren't you? Instead, please | 1333 // You were going to just dump your switches here, weren't you? Instead, please |
1329 // put them in alphabetical order above, or in order inside the appropriate | 1334 // put them in alphabetical order above, or in order inside the appropriate |
1330 // ifdef at the bottom. The order should match the header. | 1335 // ifdef at the bottom. The order should match the header. |
1331 // ----------------------------------------------------------------------------- | 1336 // ----------------------------------------------------------------------------- |
1332 | 1337 |
1333 } // namespace switches | 1338 } // namespace switches |
OLD | NEW |