| 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 1388 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1399 | 1399 |
| 1400 // Please keep this in alphabetical order. | 1400 // Please keep this in alphabetical order. |
| 1401 static const char* const kSwitchNames[] = { | 1401 static const char* const kSwitchNames[] = { |
| 1402 autofill::switches::kDisableFillOnAccountSelect, | 1402 autofill::switches::kDisableFillOnAccountSelect, |
| 1403 autofill::switches::kDisablePasswordGeneration, | 1403 autofill::switches::kDisablePasswordGeneration, |
| 1404 autofill::switches::kEnableAccessorySuggestionView, | 1404 autofill::switches::kEnableAccessorySuggestionView, |
| 1405 autofill::switches::kEnableFillOnAccountSelect, | 1405 autofill::switches::kEnableFillOnAccountSelect, |
| 1406 autofill::switches::kEnableFillOnAccountSelectNoHighlighting, | 1406 autofill::switches::kEnableFillOnAccountSelectNoHighlighting, |
| 1407 autofill::switches::kEnablePasswordGeneration, | 1407 autofill::switches::kEnablePasswordGeneration, |
| 1408 autofill::switches::kEnableSingleClickAutofill, | 1408 autofill::switches::kEnableSingleClickAutofill, |
| 1409 autofill::switches::kEnableSuggestionsWithSubstringMatch, |
| 1409 autofill::switches::kIgnoreAutocompleteOffForAutofill, | 1410 autofill::switches::kIgnoreAutocompleteOffForAutofill, |
| 1410 autofill::switches::kLocalHeuristicsOnlyForPasswordGeneration, | 1411 autofill::switches::kLocalHeuristicsOnlyForPasswordGeneration, |
| 1411 #if defined(ENABLE_EXTENSIONS) | 1412 #if defined(ENABLE_EXTENSIONS) |
| 1412 extensions::switches::kAllowHTTPBackgroundPage, | 1413 extensions::switches::kAllowHTTPBackgroundPage, |
| 1413 extensions::switches::kAllowLegacyExtensionManifests, | 1414 extensions::switches::kAllowLegacyExtensionManifests, |
| 1414 extensions::switches::kEnableSurfaceWorker, | 1415 extensions::switches::kEnableSurfaceWorker, |
| 1415 extensions::switches::kEnableAppWindowControls, | 1416 extensions::switches::kEnableAppWindowControls, |
| 1416 extensions::switches::kEnableEmbeddedExtensionOptions, | 1417 extensions::switches::kEnableEmbeddedExtensionOptions, |
| 1417 extensions::switches::kEnableExperimentalExtensionApis, | 1418 extensions::switches::kEnableExperimentalExtensionApis, |
| 1418 extensions::switches::kExtensionsOnChromeURLs, | 1419 extensions::switches::kExtensionsOnChromeURLs, |
| (...skipping 1119 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2538 switches::kDisableWebRtcEncryption, | 2539 switches::kDisableWebRtcEncryption, |
| 2539 }; | 2540 }; |
| 2540 to_command_line->CopySwitchesFrom(from_command_line, | 2541 to_command_line->CopySwitchesFrom(from_command_line, |
| 2541 kWebRtcDevSwitchNames, | 2542 kWebRtcDevSwitchNames, |
| 2542 arraysize(kWebRtcDevSwitchNames)); | 2543 arraysize(kWebRtcDevSwitchNames)); |
| 2543 } | 2544 } |
| 2544 } | 2545 } |
| 2545 #endif // defined(ENABLE_WEBRTC) | 2546 #endif // defined(ENABLE_WEBRTC) |
| 2546 | 2547 |
| 2547 } // namespace chrome | 2548 } // namespace chrome |
| OLD | NEW |