| OLD | NEW |
| 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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 559 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 570 // Enable syncing browser sessions. | 570 // Enable syncing browser sessions. |
| 571 const char kEnableSyncSessions[] = "enable-sync-sessions"; | 571 const char kEnableSyncSessions[] = "enable-sync-sessions"; |
| 572 | 572 |
| 573 // Enable syncing browser typed urls. | 573 // Enable syncing browser typed urls. |
| 574 const char kEnableSyncTypedUrls[] = "enable-sync-typed-urls"; | 574 const char kEnableSyncTypedUrls[] = "enable-sync-typed-urls"; |
| 575 | 575 |
| 576 // Enable use of experimental TCP sockets API for sending data in the | 576 // Enable use of experimental TCP sockets API for sending data in the |
| 577 // SYN packet. | 577 // SYN packet. |
| 578 const char kEnableTcpFastOpen[] = "enable-tcp-fastopen"; | 578 const char kEnableTcpFastOpen[] = "enable-tcp-fastopen"; |
| 579 | 579 |
| 580 // Enables TopSites. | |
| 581 const char kEnableTopSites[] = "enable-top-sites"; | |
| 582 | |
| 583 // Whether or not the touch events API is exposed. | 580 // Whether or not the touch events API is exposed. |
| 584 const char kEnableTouch[] = "enable-touch"; | 581 const char kEnableTouch[] = "enable-touch"; |
| 585 | 582 |
| 586 // Is verbatim instant enabled? | 583 // Is verbatim instant enabled? |
| 587 const char kEnableVerbatimInstant[] = "enable-verbatim-instant"; | 584 const char kEnableVerbatimInstant[] = "enable-verbatim-instant"; |
| 588 | 585 |
| 589 // Enables the option to show tabs as a vertical stack down the side of the | 586 // Enables the option to show tabs as a vertical stack down the side of the |
| 590 // browser window. | 587 // browser window. |
| 591 const char kEnableVerticalTabs[] = "enable-vertical-tabs"; | 588 const char kEnableVerticalTabs[] = "enable-vertical-tabs"; |
| 592 | 589 |
| (...skipping 790 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1383 | 1380 |
| 1384 // ----------------------------------------------------------------------------- | 1381 // ----------------------------------------------------------------------------- |
| 1385 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1382 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1386 // | 1383 // |
| 1387 // You were going to just dump your switches here, weren't you? Instead, | 1384 // You were going to just dump your switches here, weren't you? Instead, |
| 1388 // please put them in alphabetical order above, or in order inside the | 1385 // please put them in alphabetical order above, or in order inside the |
| 1389 // appropriate ifdef at the bottom. The order should match the header. | 1386 // appropriate ifdef at the bottom. The order should match the header. |
| 1390 // ----------------------------------------------------------------------------- | 1387 // ----------------------------------------------------------------------------- |
| 1391 | 1388 |
| 1392 } // namespace switches | 1389 } // namespace switches |
| OLD | NEW |