| 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/browser/chrome_content_browser_client.h" | 5 #include "chrome/browser/chrome_content_browser_client.h" |
| 6 | 6 |
| 7 #include <map> | 7 #include <map> |
| 8 #include <set> | 8 #include <set> |
| 9 #include <utility> | 9 #include <utility> |
| 10 #include <vector> | 10 #include <vector> |
| (...skipping 1586 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1597 | 1597 |
| 1598 // Please keep this in alphabetical order. | 1598 // Please keep this in alphabetical order. |
| 1599 static const char* const kSwitchNames[] = { | 1599 static const char* const kSwitchNames[] = { |
| 1600 #if defined(OS_ANDROID) | 1600 #if defined(OS_ANDROID) |
| 1601 autofill::switches::kDisableAccessorySuggestionView, | 1601 autofill::switches::kDisableAccessorySuggestionView, |
| 1602 autofill::switches::kEnableAccessorySuggestionView, | 1602 autofill::switches::kEnableAccessorySuggestionView, |
| 1603 #endif | 1603 #endif |
| 1604 autofill::switches::kDisableFillOnAccountSelect, | 1604 autofill::switches::kDisableFillOnAccountSelect, |
| 1605 autofill::switches::kDisablePasswordGeneration, | 1605 autofill::switches::kDisablePasswordGeneration, |
| 1606 autofill::switches::kEnableFillOnAccountSelect, | 1606 autofill::switches::kEnableFillOnAccountSelect, |
| 1607 autofill::switches::kEnableFillOnAccountSelectNoHighlighting, | |
| 1608 autofill::switches::kEnablePasswordGeneration, | 1607 autofill::switches::kEnablePasswordGeneration, |
| 1609 autofill::switches::kEnableSingleClickAutofill, | 1608 autofill::switches::kEnableSingleClickAutofill, |
| 1610 autofill::switches::kEnableSuggestionsWithSubstringMatch, | 1609 autofill::switches::kEnableSuggestionsWithSubstringMatch, |
| 1611 autofill::switches::kIgnoreAutocompleteOffForAutofill, | 1610 autofill::switches::kIgnoreAutocompleteOffForAutofill, |
| 1612 autofill::switches::kLocalHeuristicsOnlyForPasswordGeneration, | 1611 autofill::switches::kLocalHeuristicsOnlyForPasswordGeneration, |
| 1613 #if defined(ENABLE_EXTENSIONS) | 1612 #if defined(ENABLE_EXTENSIONS) |
| 1614 extensions::switches::kAllowHTTPBackgroundPage, | 1613 extensions::switches::kAllowHTTPBackgroundPage, |
| 1615 extensions::switches::kAllowLegacyExtensionManifests, | 1614 extensions::switches::kAllowLegacyExtensionManifests, |
| 1616 extensions::switches::kEnableAppWindowControls, | 1615 extensions::switches::kEnableAppWindowControls, |
| 1617 extensions::switches::kEnableEmbeddedExtensionOptions, | 1616 extensions::switches::kEnableEmbeddedExtensionOptions, |
| (...skipping 1376 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2994 if (channel <= kMaxDisableEncryptionChannel) { | 2993 if (channel <= kMaxDisableEncryptionChannel) { |
| 2995 static const char* const kWebRtcDevSwitchNames[] = { | 2994 static const char* const kWebRtcDevSwitchNames[] = { |
| 2996 switches::kDisableWebRtcEncryption, | 2995 switches::kDisableWebRtcEncryption, |
| 2997 }; | 2996 }; |
| 2998 to_command_line->CopySwitchesFrom(from_command_line, | 2997 to_command_line->CopySwitchesFrom(from_command_line, |
| 2999 kWebRtcDevSwitchNames, | 2998 kWebRtcDevSwitchNames, |
| 3000 arraysize(kWebRtcDevSwitchNames)); | 2999 arraysize(kWebRtcDevSwitchNames)); |
| 3001 } | 3000 } |
| 3002 } | 3001 } |
| 3003 #endif // defined(ENABLE_WEBRTC) | 3002 #endif // defined(ENABLE_WEBRTC) |
| OLD | NEW |