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 | 9 |
10 namespace switches { | 10 namespace switches { |
(...skipping 426 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
437 | 437 |
438 // Enables the pre- and auto-login features. When a user signs in to sync, the | 438 // Enables the pre- and auto-login features. When a user signs in to sync, the |
439 // browser's cookie jar is pre-filled with GAIA cookies. When the user visits a | 439 // browser's cookie jar is pre-filled with GAIA cookies. When the user visits a |
440 // GAIA login page, an info bar can help the user login. | 440 // GAIA login page, an info bar can help the user login. |
441 const char kEnableAutologin[] = "enable-autologin"; | 441 const char kEnableAutologin[] = "enable-autologin"; |
442 | 442 |
443 // This flag enables UI for clearing server data. Temporarily in place until | 443 // This flag enables UI for clearing server data. Temporarily in place until |
444 // there's a server endpoint deployed. | 444 // there's a server endpoint deployed. |
445 const char kEnableClearServerData[] = "enable-clear-server-data"; | 445 const char kEnableClearServerData[] = "enable-clear-server-data"; |
446 | 446 |
447 // Enables click-to-play for blocked plug-ins. | |
448 const char kEnableClickToPlay[] = "enable-click-to-play"; | |
449 | |
450 // This applies only when the process type is "service". Enables the Cloud | 447 // This applies only when the process type is "service". Enables the Cloud |
451 // Print Proxy component within the service process. | 448 // Print Proxy component within the service process. |
452 const char kEnableCloudPrintProxy[] = "enable-cloud-print-proxy"; | 449 const char kEnableCloudPrintProxy[] = "enable-cloud-print-proxy"; |
453 | 450 |
454 // Enables compositing to texture instead of display. | 451 // Enables compositing to texture instead of display. |
455 const char kEnableCompositeToTexture[] = "enable-composite-to-texture"; | 452 const char kEnableCompositeToTexture[] = "enable-composite-to-texture"; |
456 | 453 |
457 // Enables establishing a backup TCP connection if a specified timeout is | 454 // Enables establishing a backup TCP connection if a specified timeout is |
458 // exceeded. | 455 // exceeded. |
459 const char kEnableConnectBackupJobs[] = "enable-connect-backup-jobs"; | 456 const char kEnableConnectBackupJobs[] = "enable-connect-backup-jobs"; |
(...skipping 843 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1303 | 1300 |
1304 // ----------------------------------------------------------------------------- | 1301 // ----------------------------------------------------------------------------- |
1305 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1302 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
1306 // | 1303 // |
1307 // You were going to just dump your switches here, weren't you? Instead, please | 1304 // You were going to just dump your switches here, weren't you? Instead, please |
1308 // put them in alphabetical order above, or in order inside the appropriate | 1305 // put them in alphabetical order above, or in order inside the appropriate |
1309 // ifdef at the bottom. The order should match the header. | 1306 // ifdef at the bottom. The order should match the header. |
1310 // ----------------------------------------------------------------------------- | 1307 // ----------------------------------------------------------------------------- |
1311 | 1308 |
1312 } // namespace switches | 1309 } // namespace switches |
OLD | NEW |