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 1563 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1574 switches::kDisableExtensionsResourceWhitelist, | 1574 switches::kDisableExtensionsResourceWhitelist, |
1575 switches::kDisablePnacl, | 1575 switches::kDisablePnacl, |
1576 switches::kDisableScriptedPrintThrottling, | 1576 switches::kDisableScriptedPrintThrottling, |
1577 switches::kEnableAdview, | 1577 switches::kEnableAdview, |
1578 switches::kEnableAppWindowControls, | 1578 switches::kEnableAppWindowControls, |
1579 switches::kEnableBenchmarking, | 1579 switches::kEnableBenchmarking, |
1580 switches::kEnableNaCl, | 1580 switches::kEnableNaCl, |
1581 switches::kEnableNaClDebug, | 1581 switches::kEnableNaClDebug, |
1582 switches::kEnableNaClNonSfiMode, | 1582 switches::kEnableNaClNonSfiMode, |
1583 switches::kEnableNetBenchmarking, | 1583 switches::kEnableNetBenchmarking, |
| 1584 switches::kEnableOfflineAutoReload, |
1584 switches::kEnableStreamlinedHostedApps, | 1585 switches::kEnableStreamlinedHostedApps, |
1585 switches::kEnableWatchdog, | 1586 switches::kEnableWatchdog, |
1586 switches::kMemoryProfiling, | 1587 switches::kMemoryProfiling, |
1587 switches::kMessageLoopHistogrammer, | 1588 switches::kMessageLoopHistogrammer, |
1588 switches::kNoJsRandomness, | 1589 switches::kNoJsRandomness, |
1589 switches::kOutOfProcessPdf, | 1590 switches::kOutOfProcessPdf, |
1590 switches::kPlaybackMode, | 1591 switches::kPlaybackMode, |
1591 switches::kPpapiFlashArgs, | 1592 switches::kPpapiFlashArgs, |
1592 switches::kPpapiFlashPath, | 1593 switches::kPpapiFlashPath, |
1593 switches::kPpapiFlashVersion, | 1594 switches::kPpapiFlashVersion, |
(...skipping 1143 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2737 switches::kDisableWebRtcEncryption, | 2738 switches::kDisableWebRtcEncryption, |
2738 }; | 2739 }; |
2739 to_command_line->CopySwitchesFrom(from_command_line, | 2740 to_command_line->CopySwitchesFrom(from_command_line, |
2740 kWebRtcDevSwitchNames, | 2741 kWebRtcDevSwitchNames, |
2741 arraysize(kWebRtcDevSwitchNames)); | 2742 arraysize(kWebRtcDevSwitchNames)); |
2742 } | 2743 } |
2743 } | 2744 } |
2744 #endif // defined(ENABLE_WEBRTC) | 2745 #endif // defined(ENABLE_WEBRTC) |
2745 | 2746 |
2746 } // namespace chrome | 2747 } // namespace chrome |
OLD | NEW |