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 1335 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1346 switches::kEnableBenchmarking, | 1346 switches::kEnableBenchmarking, |
1347 switches::kEnableNaCl, | 1347 switches::kEnableNaCl, |
1348 #if !defined(DISABLE_NACL) | 1348 #if !defined(DISABLE_NACL) |
1349 switches::kEnableNaClDebug, | 1349 switches::kEnableNaClDebug, |
1350 switches::kEnableNaClNonSfiMode, | 1350 switches::kEnableNaClNonSfiMode, |
1351 #endif | 1351 #endif |
1352 switches::kEnableNetBenchmarking, | 1352 switches::kEnableNetBenchmarking, |
1353 switches::kEnableShowModalDialog, | 1353 switches::kEnableShowModalDialog, |
1354 switches::kEnableStreamlinedHostedApps, | 1354 switches::kEnableStreamlinedHostedApps, |
1355 switches::kEnableWebBasedSignin, | 1355 switches::kEnableWebBasedSignin, |
| 1356 switches::kJavaScriptHarmony, |
1356 switches::kMessageLoopHistogrammer, | 1357 switches::kMessageLoopHistogrammer, |
1357 switches::kOutOfProcessPdf, | 1358 switches::kOutOfProcessPdf, |
1358 switches::kPlaybackMode, | 1359 switches::kPlaybackMode, |
1359 switches::kPpapiFlashArgs, | 1360 switches::kPpapiFlashArgs, |
1360 switches::kPpapiFlashPath, | 1361 switches::kPpapiFlashPath, |
1361 switches::kPpapiFlashVersion, | 1362 switches::kPpapiFlashVersion, |
1362 switches::kProfilingAtStart, | 1363 switches::kProfilingAtStart, |
1363 switches::kProfilingFile, | 1364 switches::kProfilingFile, |
1364 switches::kProfilingFlush, | 1365 switches::kProfilingFlush, |
1365 switches::kRecordMode, | 1366 switches::kRecordMode, |
(...skipping 1225 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2591 switches::kDisableWebRtcEncryption, | 2592 switches::kDisableWebRtcEncryption, |
2592 }; | 2593 }; |
2593 to_command_line->CopySwitchesFrom(from_command_line, | 2594 to_command_line->CopySwitchesFrom(from_command_line, |
2594 kWebRtcDevSwitchNames, | 2595 kWebRtcDevSwitchNames, |
2595 arraysize(kWebRtcDevSwitchNames)); | 2596 arraysize(kWebRtcDevSwitchNames)); |
2596 } | 2597 } |
2597 } | 2598 } |
2598 #endif // defined(ENABLE_WEBRTC) | 2599 #endif // defined(ENABLE_WEBRTC) |
2599 | 2600 |
2600 } // namespace chrome | 2601 } // namespace chrome |
OLD | NEW |