| 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 1361 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1372 autofill::switches::kDisablePasswordGeneration, | 1372 autofill::switches::kDisablePasswordGeneration, |
| 1373 autofill::switches::kEnableFillOnAccountSelect, | 1373 autofill::switches::kEnableFillOnAccountSelect, |
| 1374 autofill::switches::kEnablePasswordGeneration, | 1374 autofill::switches::kEnablePasswordGeneration, |
| 1375 autofill::switches::kEnableSingleClickAutofill, | 1375 autofill::switches::kEnableSingleClickAutofill, |
| 1376 autofill::switches::kIgnoreAutocompleteOffForAutofill, | 1376 autofill::switches::kIgnoreAutocompleteOffForAutofill, |
| 1377 autofill::switches::kLocalHeuristicsOnlyForPasswordGeneration, | 1377 autofill::switches::kLocalHeuristicsOnlyForPasswordGeneration, |
| 1378 autofill::switches::kRespectAutocompleteOffForAutofill, | 1378 autofill::switches::kRespectAutocompleteOffForAutofill, |
| 1379 #if defined(ENABLE_EXTENSIONS) | 1379 #if defined(ENABLE_EXTENSIONS) |
| 1380 extensions::switches::kAllowHTTPBackgroundPage, | 1380 extensions::switches::kAllowHTTPBackgroundPage, |
| 1381 extensions::switches::kAllowLegacyExtensionManifests, | 1381 extensions::switches::kAllowLegacyExtensionManifests, |
| 1382 extensions::switches::kEnableWorkerFrame, | 1382 extensions::switches::kEnableSurfaceWorker, |
| 1383 extensions::switches::kEnableAppWindowControls, | 1383 extensions::switches::kEnableAppWindowControls, |
| 1384 extensions::switches::kEnableEmbeddedExtensionOptions, | 1384 extensions::switches::kEnableEmbeddedExtensionOptions, |
| 1385 extensions::switches::kEnableExperimentalExtensionApis, | 1385 extensions::switches::kEnableExperimentalExtensionApis, |
| 1386 extensions::switches::kEnableScriptsRequireAction, | 1386 extensions::switches::kEnableScriptsRequireAction, |
| 1387 extensions::switches::kExtensionsOnChromeURLs, | 1387 extensions::switches::kExtensionsOnChromeURLs, |
| 1388 extensions::switches::kWhitelistedExtensionID, | 1388 extensions::switches::kWhitelistedExtensionID, |
| 1389 #endif | 1389 #endif |
| 1390 switches::kAppsCheckoutURL, | 1390 switches::kAppsCheckoutURL, |
| 1391 switches::kAppsGalleryURL, | 1391 switches::kAppsGalleryURL, |
| 1392 switches::kCloudPrintURL, | 1392 switches::kCloudPrintURL, |
| (...skipping 1225 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2618 switches::kDisableWebRtcEncryption, | 2618 switches::kDisableWebRtcEncryption, |
| 2619 }; | 2619 }; |
| 2620 to_command_line->CopySwitchesFrom(from_command_line, | 2620 to_command_line->CopySwitchesFrom(from_command_line, |
| 2621 kWebRtcDevSwitchNames, | 2621 kWebRtcDevSwitchNames, |
| 2622 arraysize(kWebRtcDevSwitchNames)); | 2622 arraysize(kWebRtcDevSwitchNames)); |
| 2623 } | 2623 } |
| 2624 } | 2624 } |
| 2625 #endif // defined(ENABLE_WEBRTC) | 2625 #endif // defined(ENABLE_WEBRTC) |
| 2626 | 2626 |
| 2627 } // namespace chrome | 2627 } // namespace chrome |
| OLD | NEW |