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 1349 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1360 #endif | 1360 #endif |
1361 switches::kAllowInsecureLocalhost, | 1361 switches::kAllowInsecureLocalhost, |
1362 switches::kAppsCheckoutURL, | 1362 switches::kAppsCheckoutURL, |
1363 switches::kAppsGalleryURL, | 1363 switches::kAppsGalleryURL, |
1364 switches::kCloudPrintURL, | 1364 switches::kCloudPrintURL, |
1365 switches::kCloudPrintXmppEndpoint, | 1365 switches::kCloudPrintXmppEndpoint, |
1366 switches::kDisableBundledPpapiFlash, | 1366 switches::kDisableBundledPpapiFlash, |
1367 switches::kDisableCastStreamingHWEncoding, | 1367 switches::kDisableCastStreamingHWEncoding, |
1368 switches::kDisableJavaScriptHarmonyShipping, | 1368 switches::kDisableJavaScriptHarmonyShipping, |
1369 switches::kDisableNewBookmarkApps, | 1369 switches::kDisableNewBookmarkApps, |
1370 switches::kDisableOutOfProcessPdf, | |
1371 switches::kEnableBenchmarking, | 1370 switches::kEnableBenchmarking, |
1372 switches::kEnableNaCl, | 1371 switches::kEnableNaCl, |
1373 #if !defined(DISABLE_NACL) | 1372 #if !defined(DISABLE_NACL) |
1374 switches::kEnableNaClDebug, | 1373 switches::kEnableNaClDebug, |
1375 switches::kEnableNaClNonSfiMode, | 1374 switches::kEnableNaClNonSfiMode, |
1376 switches::kEnablePNaClSubzero, | 1375 switches::kEnablePNaClSubzero, |
1377 #endif | 1376 #endif |
1378 switches::kEnableNetBenchmarking, | 1377 switches::kEnableNetBenchmarking, |
1379 switches::kEnableNewBookmarkApps, | 1378 switches::kEnableNewBookmarkApps, |
1380 switches::kEnableOutOfProcessPdf, | |
1381 switches::kEnablePluginPlaceholderShadowDom, | 1379 switches::kEnablePluginPlaceholderShadowDom, |
1382 switches::kJavaScriptHarmony, | 1380 switches::kJavaScriptHarmony, |
1383 switches::kMessageLoopHistogrammer, | 1381 switches::kMessageLoopHistogrammer, |
1384 switches::kPpapiFlashArgs, | 1382 switches::kPpapiFlashArgs, |
1385 switches::kPpapiFlashPath, | 1383 switches::kPpapiFlashPath, |
1386 switches::kPpapiFlashVersion, | 1384 switches::kPpapiFlashVersion, |
1387 switches::kProfilingAtStart, | 1385 switches::kProfilingAtStart, |
1388 switches::kProfilingFile, | 1386 switches::kProfilingFile, |
1389 switches::kProfilingFlush, | 1387 switches::kProfilingFlush, |
1390 switches::kUnsafetyTreatInsecureOriginAsSecure, | 1388 switches::kUnsafetyTreatInsecureOriginAsSecure, |
(...skipping 1054 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2445 switches::kDisableWebRtcEncryption, | 2443 switches::kDisableWebRtcEncryption, |
2446 }; | 2444 }; |
2447 to_command_line->CopySwitchesFrom(from_command_line, | 2445 to_command_line->CopySwitchesFrom(from_command_line, |
2448 kWebRtcDevSwitchNames, | 2446 kWebRtcDevSwitchNames, |
2449 arraysize(kWebRtcDevSwitchNames)); | 2447 arraysize(kWebRtcDevSwitchNames)); |
2450 } | 2448 } |
2451 } | 2449 } |
2452 #endif // defined(ENABLE_WEBRTC) | 2450 #endif // defined(ENABLE_WEBRTC) |
2453 | 2451 |
2454 } // namespace chrome | 2452 } // namespace chrome |
OLD | NEW |