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 1539 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1550 | 1550 |
1551 MaybeAppendBlinkSettingsSwitchForFieldTrial( | 1551 MaybeAppendBlinkSettingsSwitchForFieldTrial( |
1552 browser_command_line, command_line); | 1552 browser_command_line, command_line); |
1553 | 1553 |
1554 // Please keep this in alphabetical order. | 1554 // Please keep this in alphabetical order. |
1555 static const char* const kSwitchNames[] = { | 1555 static const char* const kSwitchNames[] = { |
1556 #if defined(OS_ANDROID) | 1556 #if defined(OS_ANDROID) |
1557 autofill::switches::kDisableAccessorySuggestionView, | 1557 autofill::switches::kDisableAccessorySuggestionView, |
1558 autofill::switches::kEnableAccessorySuggestionView, | 1558 autofill::switches::kEnableAccessorySuggestionView, |
1559 #endif | 1559 #endif |
1560 autofill::switches::kDisableFillOnAccountSelect, | |
1561 autofill::switches::kDisablePasswordGeneration, | 1560 autofill::switches::kDisablePasswordGeneration, |
1562 autofill::switches::kEnableFillOnAccountSelect, | |
1563 autofill::switches::kEnablePasswordGeneration, | 1561 autofill::switches::kEnablePasswordGeneration, |
1564 autofill::switches::kEnableSingleClickAutofill, | 1562 autofill::switches::kEnableSingleClickAutofill, |
1565 autofill::switches::kEnableSuggestionsWithSubstringMatch, | 1563 autofill::switches::kEnableSuggestionsWithSubstringMatch, |
1566 autofill::switches::kIgnoreAutocompleteOffForAutofill, | 1564 autofill::switches::kIgnoreAutocompleteOffForAutofill, |
1567 autofill::switches::kLocalHeuristicsOnlyForPasswordGeneration, | 1565 autofill::switches::kLocalHeuristicsOnlyForPasswordGeneration, |
1568 #if defined(ENABLE_EXTENSIONS) | 1566 #if defined(ENABLE_EXTENSIONS) |
1569 extensions::switches::kAllowHTTPBackgroundPage, | 1567 extensions::switches::kAllowHTTPBackgroundPage, |
1570 extensions::switches::kAllowLegacyExtensionManifests, | 1568 extensions::switches::kAllowLegacyExtensionManifests, |
1571 extensions::switches::kEnableAppWindowControls, | 1569 extensions::switches::kEnableAppWindowControls, |
1572 extensions::switches::kEnableEmbeddedExtensionOptions, | 1570 extensions::switches::kEnableEmbeddedExtensionOptions, |
(...skipping 1386 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2959 if (channel <= kMaxDisableEncryptionChannel) { | 2957 if (channel <= kMaxDisableEncryptionChannel) { |
2960 static const char* const kWebRtcDevSwitchNames[] = { | 2958 static const char* const kWebRtcDevSwitchNames[] = { |
2961 switches::kDisableWebRtcEncryption, | 2959 switches::kDisableWebRtcEncryption, |
2962 }; | 2960 }; |
2963 to_command_line->CopySwitchesFrom(from_command_line, | 2961 to_command_line->CopySwitchesFrom(from_command_line, |
2964 kWebRtcDevSwitchNames, | 2962 kWebRtcDevSwitchNames, |
2965 arraysize(kWebRtcDevSwitchNames)); | 2963 arraysize(kWebRtcDevSwitchNames)); |
2966 } | 2964 } |
2967 } | 2965 } |
2968 #endif // defined(ENABLE_WEBRTC) | 2966 #endif // defined(ENABLE_WEBRTC) |
OLD | NEW |