| 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 1584 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1595 switches::kEnableAppWindowControls, | 1595 switches::kEnableAppWindowControls, |
| 1596 switches::kEnableBenchmarking, | 1596 switches::kEnableBenchmarking, |
| 1597 switches::kEnableNaCl, | 1597 switches::kEnableNaCl, |
| 1598 #if !defined(DISABLE_NACL) | 1598 #if !defined(DISABLE_NACL) |
| 1599 switches::kEnableNaClDebug, | 1599 switches::kEnableNaClDebug, |
| 1600 switches::kEnableNaClNonSfiMode, | 1600 switches::kEnableNaClNonSfiMode, |
| 1601 #endif | 1601 #endif |
| 1602 switches::kEnableNetBenchmarking, | 1602 switches::kEnableNetBenchmarking, |
| 1603 switches::kEnableShowModalDialog, | 1603 switches::kEnableShowModalDialog, |
| 1604 switches::kEnableStreamlinedHostedApps, | 1604 switches::kEnableStreamlinedHostedApps, |
| 1605 switches::kEnableWatchdog, | |
| 1606 switches::kEnableWebBasedSignin, | 1605 switches::kEnableWebBasedSignin, |
| 1607 switches::kMessageLoopHistogrammer, | 1606 switches::kMessageLoopHistogrammer, |
| 1608 switches::kOutOfProcessPdf, | 1607 switches::kOutOfProcessPdf, |
| 1609 switches::kPlaybackMode, | 1608 switches::kPlaybackMode, |
| 1610 switches::kPpapiFlashArgs, | 1609 switches::kPpapiFlashArgs, |
| 1611 switches::kPpapiFlashPath, | 1610 switches::kPpapiFlashPath, |
| 1612 switches::kPpapiFlashVersion, | 1611 switches::kPpapiFlashVersion, |
| 1613 switches::kProfilingAtStart, | 1612 switches::kProfilingAtStart, |
| 1614 switches::kProfilingFile, | 1613 switches::kProfilingFile, |
| 1615 switches::kProfilingFlush, | 1614 switches::kProfilingFlush, |
| (...skipping 1245 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2861 switches::kDisableWebRtcEncryption, | 2860 switches::kDisableWebRtcEncryption, |
| 2862 }; | 2861 }; |
| 2863 to_command_line->CopySwitchesFrom(from_command_line, | 2862 to_command_line->CopySwitchesFrom(from_command_line, |
| 2864 kWebRtcDevSwitchNames, | 2863 kWebRtcDevSwitchNames, |
| 2865 arraysize(kWebRtcDevSwitchNames)); | 2864 arraysize(kWebRtcDevSwitchNames)); |
| 2866 } | 2865 } |
| 2867 } | 2866 } |
| 2868 #endif // defined(ENABLE_WEBRTC) | 2867 #endif // defined(ENABLE_WEBRTC) |
| 2869 | 2868 |
| 2870 } // namespace chrome | 2869 } // namespace chrome |
| OLD | NEW |