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 <set> | 7 #include <set> |
8 #include <utility> | 8 #include <utility> |
9 #include <vector> | 9 #include <vector> |
10 | 10 |
(...skipping 1299 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1310 static const char* const kSwitchNames[] = { | 1310 static const char* const kSwitchNames[] = { |
1311 autofill::switches::kDisableFillOnAccountSelect, | 1311 autofill::switches::kDisableFillOnAccountSelect, |
1312 autofill::switches::kDisablePasswordGeneration, | 1312 autofill::switches::kDisablePasswordGeneration, |
1313 autofill::switches::kEnableFillOnAccountSelect, | 1313 autofill::switches::kEnableFillOnAccountSelect, |
1314 autofill::switches::kEnableFillOnAccountSelectNoHighlighting, | 1314 autofill::switches::kEnableFillOnAccountSelectNoHighlighting, |
1315 autofill::switches::kEnablePasswordGeneration, | 1315 autofill::switches::kEnablePasswordGeneration, |
1316 autofill::switches::kEnablePasswordSaveOnInPageNavigation, | 1316 autofill::switches::kEnablePasswordSaveOnInPageNavigation, |
1317 autofill::switches::kEnableSingleClickAutofill, | 1317 autofill::switches::kEnableSingleClickAutofill, |
1318 autofill::switches::kIgnoreAutocompleteOffForAutofill, | 1318 autofill::switches::kIgnoreAutocompleteOffForAutofill, |
1319 autofill::switches::kLocalHeuristicsOnlyForPasswordGeneration, | 1319 autofill::switches::kLocalHeuristicsOnlyForPasswordGeneration, |
1320 autofill::switches::kRespectAutocompleteOffForAutofill, | |
1321 #if defined(ENABLE_EXTENSIONS) | 1320 #if defined(ENABLE_EXTENSIONS) |
1322 extensions::switches::kAllowHTTPBackgroundPage, | 1321 extensions::switches::kAllowHTTPBackgroundPage, |
1323 extensions::switches::kAllowLegacyExtensionManifests, | 1322 extensions::switches::kAllowLegacyExtensionManifests, |
1324 extensions::switches::kEnableSurfaceWorker, | 1323 extensions::switches::kEnableSurfaceWorker, |
1325 extensions::switches::kEnableAppWindowControls, | 1324 extensions::switches::kEnableAppWindowControls, |
1326 extensions::switches::kEnableEmbeddedExtensionOptions, | 1325 extensions::switches::kEnableEmbeddedExtensionOptions, |
1327 extensions::switches::kEnableExperimentalExtensionApis, | 1326 extensions::switches::kEnableExperimentalExtensionApis, |
1328 extensions::switches::kExtensionsOnChromeURLs, | 1327 extensions::switches::kExtensionsOnChromeURLs, |
1329 extensions::switches::kWhitelistedExtensionID, | 1328 extensions::switches::kWhitelistedExtensionID, |
1330 #endif | 1329 #endif |
(...skipping 1083 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2414 switches::kDisableWebRtcEncryption, | 2413 switches::kDisableWebRtcEncryption, |
2415 }; | 2414 }; |
2416 to_command_line->CopySwitchesFrom(from_command_line, | 2415 to_command_line->CopySwitchesFrom(from_command_line, |
2417 kWebRtcDevSwitchNames, | 2416 kWebRtcDevSwitchNames, |
2418 arraysize(kWebRtcDevSwitchNames)); | 2417 arraysize(kWebRtcDevSwitchNames)); |
2419 } | 2418 } |
2420 } | 2419 } |
2421 #endif // defined(ENABLE_WEBRTC) | 2420 #endif // defined(ENABLE_WEBRTC) |
2422 | 2421 |
2423 } // namespace chrome | 2422 } // namespace chrome |
OLD | NEW |