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 1643 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1654 switches::kEnableBenchmarking, | 1654 switches::kEnableBenchmarking, |
1655 switches::kEnableNaCl, | 1655 switches::kEnableNaCl, |
1656 switches::kEnableNaClDebug, | 1656 switches::kEnableNaClDebug, |
1657 switches::kEnableNaClNonSfiMode, | 1657 switches::kEnableNaClNonSfiMode, |
1658 switches::kEnableNetBenchmarking, | 1658 switches::kEnableNetBenchmarking, |
1659 switches::kEnableStreamlinedHostedApps, | 1659 switches::kEnableStreamlinedHostedApps, |
1660 switches::kEnableWatchdog, | 1660 switches::kEnableWatchdog, |
1661 switches::kEnableWebBasedSignin, | 1661 switches::kEnableWebBasedSignin, |
1662 switches::kMemoryProfiling, | 1662 switches::kMemoryProfiling, |
1663 switches::kMessageLoopHistogrammer, | 1663 switches::kMessageLoopHistogrammer, |
1664 switches::kNoJsRandomness, | |
1665 switches::kOutOfProcessPdf, | 1664 switches::kOutOfProcessPdf, |
1666 switches::kPlaybackMode, | 1665 switches::kPlaybackMode, |
1667 switches::kPpapiFlashArgs, | 1666 switches::kPpapiFlashArgs, |
1668 switches::kPpapiFlashPath, | 1667 switches::kPpapiFlashPath, |
1669 switches::kPpapiFlashVersion, | 1668 switches::kPpapiFlashVersion, |
1670 switches::kProfilingAtStart, | 1669 switches::kProfilingAtStart, |
1671 switches::kProfilingFile, | 1670 switches::kProfilingFile, |
1672 switches::kProfilingFlush, | 1671 switches::kProfilingFlush, |
1673 switches::kRecordMode, | 1672 switches::kRecordMode, |
1674 switches::kSilentDumpOnDCHECK, | 1673 switches::kSilentDumpOnDCHECK, |
(...skipping 1077 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2752 switches::kDisableWebRtcEncryption, | 2751 switches::kDisableWebRtcEncryption, |
2753 }; | 2752 }; |
2754 to_command_line->CopySwitchesFrom(from_command_line, | 2753 to_command_line->CopySwitchesFrom(from_command_line, |
2755 kWebRtcDevSwitchNames, | 2754 kWebRtcDevSwitchNames, |
2756 arraysize(kWebRtcDevSwitchNames)); | 2755 arraysize(kWebRtcDevSwitchNames)); |
2757 } | 2756 } |
2758 } | 2757 } |
2759 #endif // defined(ENABLE_WEBRTC) | 2758 #endif // defined(ENABLE_WEBRTC) |
2760 | 2759 |
2761 } // namespace chrome | 2760 } // namespace chrome |
OLD | NEW |