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 1386 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1397 extensions::switches::kExtensionsOnChromeURLs, | 1397 extensions::switches::kExtensionsOnChromeURLs, |
1398 extensions::switches::kWhitelistedExtensionID, | 1398 extensions::switches::kWhitelistedExtensionID, |
1399 #endif | 1399 #endif |
1400 switches::kAppsCheckoutURL, | 1400 switches::kAppsCheckoutURL, |
1401 switches::kAppsGalleryURL, | 1401 switches::kAppsGalleryURL, |
1402 switches::kCloudPrintURL, | 1402 switches::kCloudPrintURL, |
1403 switches::kCloudPrintXmppEndpoint, | 1403 switches::kCloudPrintXmppEndpoint, |
1404 switches::kDisableBundledPpapiFlash, | 1404 switches::kDisableBundledPpapiFlash, |
1405 switches::kDisableCastStreamingHWEncoding, | 1405 switches::kDisableCastStreamingHWEncoding, |
1406 switches::kDisableJavaScriptHarmonyShipping, | 1406 switches::kDisableJavaScriptHarmonyShipping, |
1407 switches::kDisableNewBookmarkApps, | |
1408 switches::kDisableOutOfProcessPdf, | 1407 switches::kDisableOutOfProcessPdf, |
1409 switches::kEnableBenchmarking, | 1408 switches::kEnableBenchmarking, |
1410 switches::kEnableNaCl, | 1409 switches::kEnableNaCl, |
1411 #if !defined(DISABLE_NACL) | 1410 #if !defined(DISABLE_NACL) |
1412 switches::kEnableNaClDebug, | 1411 switches::kEnableNaClDebug, |
1413 switches::kEnableNaClNonSfiMode, | 1412 switches::kEnableNaClNonSfiMode, |
1414 #endif | 1413 #endif |
1415 switches::kEnableNetBenchmarking, | 1414 switches::kEnableNetBenchmarking, |
| 1415 switches::kEnableNewBookmarkApps, |
1416 switches::kEnableOutOfProcessPdf, | 1416 switches::kEnableOutOfProcessPdf, |
1417 switches::kEnablePluginPlaceholderShadowDom, | 1417 switches::kEnablePluginPlaceholderShadowDom, |
1418 switches::kEnableShowModalDialog, | 1418 switches::kEnableShowModalDialog, |
1419 switches::kEnableWebBasedSignin, | 1419 switches::kEnableWebBasedSignin, |
1420 switches::kJavaScriptHarmony, | 1420 switches::kJavaScriptHarmony, |
1421 switches::kMessageLoopHistogrammer, | 1421 switches::kMessageLoopHistogrammer, |
1422 switches::kPlaybackMode, | 1422 switches::kPlaybackMode, |
1423 switches::kPpapiFlashArgs, | 1423 switches::kPpapiFlashArgs, |
1424 switches::kPpapiFlashPath, | 1424 switches::kPpapiFlashPath, |
1425 switches::kPpapiFlashVersion, | 1425 switches::kPpapiFlashVersion, |
(...skipping 1202 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2628 switches::kDisableWebRtcEncryption, | 2628 switches::kDisableWebRtcEncryption, |
2629 }; | 2629 }; |
2630 to_command_line->CopySwitchesFrom(from_command_line, | 2630 to_command_line->CopySwitchesFrom(from_command_line, |
2631 kWebRtcDevSwitchNames, | 2631 kWebRtcDevSwitchNames, |
2632 arraysize(kWebRtcDevSwitchNames)); | 2632 arraysize(kWebRtcDevSwitchNames)); |
2633 } | 2633 } |
2634 } | 2634 } |
2635 #endif // defined(ENABLE_WEBRTC) | 2635 #endif // defined(ENABLE_WEBRTC) |
2636 | 2636 |
2637 } // namespace chrome | 2637 } // namespace chrome |
OLD | NEW |