| 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 1462 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1473 // Specifies a custom URL for fetching plug-ins metadata. Used for testing. | 1473 // Specifies a custom URL for fetching plug-ins metadata. Used for testing. |
| 1474 const char kPluginsMetadataServerURL[] = "plugins-metadata-server-url"; | 1474 const char kPluginsMetadataServerURL[] = "plugins-metadata-server-url"; |
| 1475 #endif | 1475 #endif |
| 1476 | 1476 |
| 1477 #if defined(OS_ANDROID) || defined(OS_IOS) | 1477 #if defined(OS_ANDROID) || defined(OS_IOS) |
| 1478 // Enable SPDY proxy. | 1478 // Enable SPDY proxy. |
| 1479 const char kEnableSpdyProxyAuth[] = "enable-spdy-proxy-auth"; | 1479 const char kEnableSpdyProxyAuth[] = "enable-spdy-proxy-auth"; |
| 1480 #endif // defined(OS_ANDROID) || defined(OS_IOS) | 1480 #endif // defined(OS_ANDROID) || defined(OS_IOS) |
| 1481 | 1481 |
| 1482 #if defined(OS_ANDROID) | 1482 #if defined(OS_ANDROID) |
| 1483 // Enable the accessibility tab switcher. |
| 1484 const char kEnableAccessibilityTabSwitcher[] = |
| 1485 "enable-accessibility-tab-switcher"; |
| 1486 |
| 1483 // Enables the new NTP. | 1487 // Enables the new NTP. |
| 1484 const char kEnableNewNTP[] = "enable-new-ntp"; | 1488 const char kEnableNewNTP[] = "enable-new-ntp"; |
| 1485 | 1489 |
| 1486 // Pops the translate infobar if possible. | 1490 // Pops the translate infobar if possible. |
| 1487 const char kEnableTranslate[] = "enable-translate"; | 1491 const char kEnableTranslate[] = "enable-translate"; |
| 1488 | 1492 |
| 1489 // Registers for cloud policy using the BROWSER client type instead of the | 1493 // Registers for cloud policy using the BROWSER client type instead of the |
| 1490 // ANDROID_BROWSER type. This enables skipping the server whitelist. | 1494 // ANDROID_BROWSER type. This enables skipping the server whitelist. |
| 1491 // TODO(joaodasilva): remove this. http://crbug.com/248527 | 1495 // TODO(joaodasilva): remove this. http://crbug.com/248527 |
| 1492 const char kFakeCloudPolicyType[] = "fake-cloud-policy-type"; | 1496 const char kFakeCloudPolicyType[] = "fake-cloud-policy-type"; |
| (...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1602 | 1606 |
| 1603 // ----------------------------------------------------------------------------- | 1607 // ----------------------------------------------------------------------------- |
| 1604 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1608 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1605 // | 1609 // |
| 1606 // You were going to just dump your switches here, weren't you? Instead, please | 1610 // You were going to just dump your switches here, weren't you? Instead, please |
| 1607 // put them in alphabetical order above, or in order inside the appropriate | 1611 // put them in alphabetical order above, or in order inside the appropriate |
| 1608 // ifdef at the bottom. The order should match the header. | 1612 // ifdef at the bottom. The order should match the header. |
| 1609 // ----------------------------------------------------------------------------- | 1613 // ----------------------------------------------------------------------------- |
| 1610 | 1614 |
| 1611 } // namespace switches | 1615 } // namespace switches |
| OLD | NEW |