| 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 1401 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1412 autofill::switches::kEnableFillOnAccountSelect, | 1412 autofill::switches::kEnableFillOnAccountSelect, |
| 1413 autofill::switches::kEnableFillOnAccountSelectNoHighlighting, | 1413 autofill::switches::kEnableFillOnAccountSelectNoHighlighting, |
| 1414 autofill::switches::kEnablePasswordGeneration, | 1414 autofill::switches::kEnablePasswordGeneration, |
| 1415 autofill::switches::kEnableSingleClickAutofill, | 1415 autofill::switches::kEnableSingleClickAutofill, |
| 1416 autofill::switches::kEnableSuggestionsWithSubstringMatch, | 1416 autofill::switches::kEnableSuggestionsWithSubstringMatch, |
| 1417 autofill::switches::kIgnoreAutocompleteOffForAutofill, | 1417 autofill::switches::kIgnoreAutocompleteOffForAutofill, |
| 1418 autofill::switches::kLocalHeuristicsOnlyForPasswordGeneration, | 1418 autofill::switches::kLocalHeuristicsOnlyForPasswordGeneration, |
| 1419 #if defined(ENABLE_EXTENSIONS) | 1419 #if defined(ENABLE_EXTENSIONS) |
| 1420 extensions::switches::kAllowHTTPBackgroundPage, | 1420 extensions::switches::kAllowHTTPBackgroundPage, |
| 1421 extensions::switches::kAllowLegacyExtensionManifests, | 1421 extensions::switches::kAllowLegacyExtensionManifests, |
| 1422 extensions::switches::kEnableSurfaceWorker, | |
| 1423 extensions::switches::kEnableAppWindowControls, | 1422 extensions::switches::kEnableAppWindowControls, |
| 1424 extensions::switches::kEnableEmbeddedExtensionOptions, | 1423 extensions::switches::kEnableEmbeddedExtensionOptions, |
| 1425 extensions::switches::kEnableExperimentalExtensionApis, | 1424 extensions::switches::kEnableExperimentalExtensionApis, |
| 1426 extensions::switches::kExtensionsOnChromeURLs, | 1425 extensions::switches::kExtensionsOnChromeURLs, |
| 1427 extensions::switches::kWhitelistedExtensionID, | 1426 extensions::switches::kWhitelistedExtensionID, |
| 1428 #endif | 1427 #endif |
| 1429 switches::kAllowInsecureLocalhost, | 1428 switches::kAllowInsecureLocalhost, |
| 1430 switches::kAppsGalleryURL, | 1429 switches::kAppsGalleryURL, |
| 1431 switches::kCloudPrintURL, | 1430 switches::kCloudPrintURL, |
| 1432 switches::kCloudPrintXmppEndpoint, | 1431 switches::kCloudPrintXmppEndpoint, |
| (...skipping 1133 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2566 switches::kDisableWebRtcEncryption, | 2565 switches::kDisableWebRtcEncryption, |
| 2567 }; | 2566 }; |
| 2568 to_command_line->CopySwitchesFrom(from_command_line, | 2567 to_command_line->CopySwitchesFrom(from_command_line, |
| 2569 kWebRtcDevSwitchNames, | 2568 kWebRtcDevSwitchNames, |
| 2570 arraysize(kWebRtcDevSwitchNames)); | 2569 arraysize(kWebRtcDevSwitchNames)); |
| 2571 } | 2570 } |
| 2572 } | 2571 } |
| 2573 #endif // defined(ENABLE_WEBRTC) | 2572 #endif // defined(ENABLE_WEBRTC) |
| 2574 | 2573 |
| 2575 } // namespace chrome | 2574 } // namespace chrome |
| OLD | NEW |