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 1313 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1324 } | 1324 } |
1325 | 1325 |
1326 // Please keep this in alphabetical order. | 1326 // Please keep this in alphabetical order. |
1327 static const char* const kSwitchNames[] = { | 1327 static const char* const kSwitchNames[] = { |
1328 autofill::switches::kDisableIgnoreAutocompleteOff, | 1328 autofill::switches::kDisableIgnoreAutocompleteOff, |
1329 autofill::switches::kDisablePasswordGeneration, | 1329 autofill::switches::kDisablePasswordGeneration, |
1330 autofill::switches::kEnablePasswordGeneration, | 1330 autofill::switches::kEnablePasswordGeneration, |
1331 autofill::switches::kLocalHeuristicsOnlyForPasswordGeneration, | 1331 autofill::switches::kLocalHeuristicsOnlyForPasswordGeneration, |
1332 extensions::switches::kAllowHTTPBackgroundPage, | 1332 extensions::switches::kAllowHTTPBackgroundPage, |
1333 extensions::switches::kAllowLegacyExtensionManifests, | 1333 extensions::switches::kAllowLegacyExtensionManifests, |
| 1334 extensions::switches::kEnableAppView, |
1334 extensions::switches::kEnableEmbeddedExtensionOptions, | 1335 extensions::switches::kEnableEmbeddedExtensionOptions, |
1335 extensions::switches::kEnableExperimentalExtensionApis, | 1336 extensions::switches::kEnableExperimentalExtensionApis, |
1336 extensions::switches::kEnableScriptsRequireAction, | 1337 extensions::switches::kEnableScriptsRequireAction, |
1337 extensions::switches::kExtensionsOnChromeURLs, | 1338 extensions::switches::kExtensionsOnChromeURLs, |
1338 extensions::switches::kWhitelistedExtensionID, | 1339 extensions::switches::kWhitelistedExtensionID, |
1339 switches::kAppsCheckoutURL, | 1340 switches::kAppsCheckoutURL, |
1340 switches::kAppsGalleryURL, | 1341 switches::kAppsGalleryURL, |
1341 switches::kCloudPrintURL, | 1342 switches::kCloudPrintURL, |
1342 switches::kCloudPrintXmppEndpoint, | 1343 switches::kCloudPrintXmppEndpoint, |
1343 switches::kDisableBundledPpapiFlash, | 1344 switches::kDisableBundledPpapiFlash, |
1344 switches::kDisableScriptedPrintThrottling, | 1345 switches::kDisableScriptedPrintThrottling, |
1345 switches::kEnableAppView, | |
1346 switches::kEnableAppWindowControls, | 1346 switches::kEnableAppWindowControls, |
1347 switches::kEnableBenchmarking, | 1347 switches::kEnableBenchmarking, |
1348 switches::kEnableNaCl, | 1348 switches::kEnableNaCl, |
1349 #if !defined(DISABLE_NACL) | 1349 #if !defined(DISABLE_NACL) |
1350 switches::kEnableNaClDebug, | 1350 switches::kEnableNaClDebug, |
1351 switches::kEnableNaClNonSfiMode, | 1351 switches::kEnableNaClNonSfiMode, |
1352 #endif | 1352 #endif |
1353 switches::kEnableNetBenchmarking, | 1353 switches::kEnableNetBenchmarking, |
1354 switches::kEnableShowModalDialog, | 1354 switches::kEnableShowModalDialog, |
1355 switches::kEnableStreamlinedHostedApps, | 1355 switches::kEnableStreamlinedHostedApps, |
(...skipping 1258 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2614 switches::kDisableWebRtcEncryption, | 2614 switches::kDisableWebRtcEncryption, |
2615 }; | 2615 }; |
2616 to_command_line->CopySwitchesFrom(from_command_line, | 2616 to_command_line->CopySwitchesFrom(from_command_line, |
2617 kWebRtcDevSwitchNames, | 2617 kWebRtcDevSwitchNames, |
2618 arraysize(kWebRtcDevSwitchNames)); | 2618 arraysize(kWebRtcDevSwitchNames)); |
2619 } | 2619 } |
2620 } | 2620 } |
2621 #endif // defined(ENABLE_WEBRTC) | 2621 #endif // defined(ENABLE_WEBRTC) |
2622 | 2622 |
2623 } // namespace chrome | 2623 } // namespace chrome |
OLD | NEW |