| 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 357 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 368 "enable-extension-activity-logging"; | 368 "enable-extension-activity-logging"; |
| 369 | 369 |
| 370 const char kEnableExtensionActivityLogTesting[] = | 370 const char kEnableExtensionActivityLogTesting[] = |
| 371 "enable-extension-activity-log-testing"; | 371 "enable-extension-activity-log-testing"; |
| 372 | 372 |
| 373 // Enable the fast unload controller, which speeds up tab/window close by | 373 // Enable the fast unload controller, which speeds up tab/window close by |
| 374 // running a tab's onunload js handler independently of the GUI - | 374 // running a tab's onunload js handler independently of the GUI - |
| 375 // crbug.com/142458 . | 375 // crbug.com/142458 . |
| 376 const char kEnableFastUnload[] = "enable-fast-unload"; | 376 const char kEnableFastUnload[] = "enable-fast-unload"; |
| 377 | 377 |
| 378 #if defined(OS_CHROMEOS) | |
| 379 // Enables apps for the sign-in profile (on login and lock screens). | |
| 380 const char kEnableSigninApps[] = "enable-signin-apps"; | |
| 381 #endif // defined(OS_CHROMEOS) | |
| 382 | |
| 383 // Enables the Material Design feedback form. | 378 // Enables the Material Design feedback form. |
| 384 const char kEnableMaterialDesignFeedback[] = "enable-md-feedback"; | 379 const char kEnableMaterialDesignFeedback[] = "enable-md-feedback"; |
| 385 | 380 |
| 386 // Enables the Material Design policy page at chrome://md-policy. | 381 // Enables the Material Design policy page at chrome://md-policy. |
| 387 const char kEnableMaterialDesignPolicyPage[] = "enable-md-policy-page"; | 382 const char kEnableMaterialDesignPolicyPage[] = "enable-md-policy-page"; |
| 388 | 383 |
| 389 // Runs the Native Client inside the renderer process and enables GPU plugin | 384 // Runs the Native Client inside the renderer process and enables GPU plugin |
| 390 // (internally adds lEnableGpuPlugin to the command line). | 385 // (internally adds lEnableGpuPlugin to the command line). |
| 391 const char kEnableNaCl[] = "enable-nacl"; | 386 const char kEnableNaCl[] = "enable-nacl"; |
| 392 | 387 |
| (...skipping 925 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1318 | 1313 |
| 1319 // ----------------------------------------------------------------------------- | 1314 // ----------------------------------------------------------------------------- |
| 1320 // DO NOT ADD YOUR VERY NICE FLAGS TO THE BOTTOM OF THIS FILE. | 1315 // DO NOT ADD YOUR VERY NICE FLAGS TO THE BOTTOM OF THIS FILE. |
| 1321 // | 1316 // |
| 1322 // You were going to just dump your switches here, weren't you? Instead, please | 1317 // You were going to just dump your switches here, weren't you? Instead, please |
| 1323 // put them in alphabetical order above, or in order inside the appropriate | 1318 // put them in alphabetical order above, or in order inside the appropriate |
| 1324 // ifdef at the bottom. The order should match the header. | 1319 // ifdef at the bottom. The order should match the header. |
| 1325 // ----------------------------------------------------------------------------- | 1320 // ----------------------------------------------------------------------------- |
| 1326 | 1321 |
| 1327 } // namespace switches | 1322 } // namespace switches |
| OLD | NEW |