| 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 "ppapi/features/features.h" | 10 #include "ppapi/features/features.h" |
| (...skipping 328 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 339 "enable-extension-activity-logging"; | 339 "enable-extension-activity-logging"; |
| 340 | 340 |
| 341 const char kEnableExtensionActivityLogTesting[] = | 341 const char kEnableExtensionActivityLogTesting[] = |
| 342 "enable-extension-activity-log-testing"; | 342 "enable-extension-activity-log-testing"; |
| 343 | 343 |
| 344 // Enable the fast unload controller, which speeds up tab/window close by | 344 // Enable the fast unload controller, which speeds up tab/window close by |
| 345 // running a tab's onunload js handler independently of the GUI - | 345 // running a tab's onunload js handler independently of the GUI - |
| 346 // crbug.com/142458 . | 346 // crbug.com/142458 . |
| 347 const char kEnableFastUnload[] = "enable-fast-unload"; | 347 const char kEnableFastUnload[] = "enable-fast-unload"; |
| 348 | 348 |
| 349 #if defined(OS_CHROMEOS) |
| 350 // Enables apps on the login screen. |
| 351 const char kEnableLoginScreenApps[] = "enable-login-screen-apps"; |
| 352 #endif |
| 353 |
| 349 // Enables the Material Design feedback form. | 354 // Enables the Material Design feedback form. |
| 350 const char kEnableMaterialDesignFeedback[] = "enable-md-feedback"; | 355 const char kEnableMaterialDesignFeedback[] = "enable-md-feedback"; |
| 351 | 356 |
| 352 // Enables the Material Design policy page at chrome://md-policy. | 357 // Enables the Material Design policy page at chrome://md-policy. |
| 353 const char kEnableMaterialDesignPolicyPage[] = "enable-md-policy-page"; | 358 const char kEnableMaterialDesignPolicyPage[] = "enable-md-policy-page"; |
| 354 | 359 |
| 355 // Runs the Native Client inside the renderer process and enables GPU plugin | 360 // Runs the Native Client inside the renderer process and enables GPU plugin |
| 356 // (internally adds lEnableGpuPlugin to the command line). | 361 // (internally adds lEnableGpuPlugin to the command line). |
| 357 const char kEnableNaCl[] = "enable-nacl"; | 362 const char kEnableNaCl[] = "enable-nacl"; |
| 358 | 363 |
| (...skipping 814 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1173 | 1178 |
| 1174 // ----------------------------------------------------------------------------- | 1179 // ----------------------------------------------------------------------------- |
| 1175 // DO NOT ADD YOUR VERY NICE FLAGS TO THE BOTTOM OF THIS FILE. | 1180 // DO NOT ADD YOUR VERY NICE FLAGS TO THE BOTTOM OF THIS FILE. |
| 1176 // | 1181 // |
| 1177 // You were going to just dump your switches here, weren't you? Instead, please | 1182 // You were going to just dump your switches here, weren't you? Instead, please |
| 1178 // put them in alphabetical order above, or in order inside the appropriate | 1183 // put them in alphabetical order above, or in order inside the appropriate |
| 1179 // ifdef at the bottom. The order should match the header. | 1184 // ifdef at the bottom. The order should match the header. |
| 1180 // ----------------------------------------------------------------------------- | 1185 // ----------------------------------------------------------------------------- |
| 1181 | 1186 |
| 1182 } // namespace switches | 1187 } // namespace switches |
| OLD | NEW |