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 1302 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1313 autofill::switches::kDisablePasswordGeneration, | 1313 autofill::switches::kDisablePasswordGeneration, |
1314 autofill::switches::kEnablePasswordGeneration, | 1314 autofill::switches::kEnablePasswordGeneration, |
1315 autofill::switches::kLocalHeuristicsOnlyForPasswordGeneration, | 1315 autofill::switches::kLocalHeuristicsOnlyForPasswordGeneration, |
1316 extensions::switches::kAllowHTTPBackgroundPage, | 1316 extensions::switches::kAllowHTTPBackgroundPage, |
1317 extensions::switches::kAllowLegacyExtensionManifests, | 1317 extensions::switches::kAllowLegacyExtensionManifests, |
1318 extensions::switches::kEnableEmbeddedExtensionOptions, | 1318 extensions::switches::kEnableEmbeddedExtensionOptions, |
1319 extensions::switches::kEnableExperimentalExtensionApis, | 1319 extensions::switches::kEnableExperimentalExtensionApis, |
1320 extensions::switches::kEnableScriptsRequireAction, | 1320 extensions::switches::kEnableScriptsRequireAction, |
1321 extensions::switches::kExtensionsOnChromeURLs, | 1321 extensions::switches::kExtensionsOnChromeURLs, |
1322 extensions::switches::kWhitelistedExtensionID, | 1322 extensions::switches::kWhitelistedExtensionID, |
1323 // TODO(victorhsieh): remove the following flag once we move PPAPI FileIO | |
1324 // to browser. | |
1325 switches::kAllowNaClFileHandleAPI, | |
1326 switches::kAppsCheckoutURL, | 1323 switches::kAppsCheckoutURL, |
1327 switches::kAppsGalleryURL, | 1324 switches::kAppsGalleryURL, |
1328 switches::kCloudPrintURL, | 1325 switches::kCloudPrintURL, |
1329 switches::kCloudPrintXmppEndpoint, | 1326 switches::kCloudPrintXmppEndpoint, |
1330 switches::kDisableBundledPpapiFlash, | 1327 switches::kDisableBundledPpapiFlash, |
1331 switches::kDisableScriptedPrintThrottling, | 1328 switches::kDisableScriptedPrintThrottling, |
1332 switches::kEnableAppView, | 1329 switches::kEnableAppView, |
1333 switches::kEnableAppWindowControls, | 1330 switches::kEnableAppWindowControls, |
1334 switches::kEnableBenchmarking, | 1331 switches::kEnableBenchmarking, |
1335 switches::kEnableNaCl, | 1332 switches::kEnableNaCl, |
(...skipping 1262 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2598 switches::kDisableWebRtcEncryption, | 2595 switches::kDisableWebRtcEncryption, |
2599 }; | 2596 }; |
2600 to_command_line->CopySwitchesFrom(from_command_line, | 2597 to_command_line->CopySwitchesFrom(from_command_line, |
2601 kWebRtcDevSwitchNames, | 2598 kWebRtcDevSwitchNames, |
2602 arraysize(kWebRtcDevSwitchNames)); | 2599 arraysize(kWebRtcDevSwitchNames)); |
2603 } | 2600 } |
2604 } | 2601 } |
2605 #endif // defined(ENABLE_WEBRTC) | 2602 #endif // defined(ENABLE_WEBRTC) |
2606 | 2603 |
2607 } // namespace chrome | 2604 } // namespace chrome |
OLD | NEW |