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 <map> | 7 #include <map> |
8 #include <set> | 8 #include <set> |
9 #include <utility> | 9 #include <utility> |
10 #include <vector> | 10 #include <vector> |
(...skipping 1474 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1485 #endif | 1485 #endif |
1486 switches::kEnableBenchmarking, | 1486 switches::kEnableBenchmarking, |
1487 switches::kEnableNaCl, | 1487 switches::kEnableNaCl, |
1488 #if !defined(DISABLE_NACL) | 1488 #if !defined(DISABLE_NACL) |
1489 switches::kEnableNaClDebug, | 1489 switches::kEnableNaClDebug, |
1490 switches::kEnableNaClNonSfiMode, | 1490 switches::kEnableNaClNonSfiMode, |
1491 switches::kEnablePNaClSubzero, | 1491 switches::kEnablePNaClSubzero, |
1492 #endif | 1492 #endif |
1493 switches::kEnableNetBenchmarking, | 1493 switches::kEnableNetBenchmarking, |
1494 switches::kEnableNewBookmarkApps, | 1494 switches::kEnableNewBookmarkApps, |
1495 switches::kEnablePluginPlaceholderShadowDom, | |
1496 switches::kJavaScriptHarmony, | 1495 switches::kJavaScriptHarmony, |
1497 switches::kMessageLoopHistogrammer, | 1496 switches::kMessageLoopHistogrammer, |
1498 switches::kPpapiFlashArgs, | 1497 switches::kPpapiFlashArgs, |
1499 switches::kPpapiFlashPath, | 1498 switches::kPpapiFlashPath, |
1500 switches::kPpapiFlashVersion, | 1499 switches::kPpapiFlashVersion, |
1501 switches::kProfilingAtStart, | 1500 switches::kProfilingAtStart, |
1502 switches::kProfilingFile, | 1501 switches::kProfilingFile, |
1503 switches::kProfilingFlush, | 1502 switches::kProfilingFlush, |
1504 switches::kUnsafelyTreatInsecureOriginAsSecure, | 1503 switches::kUnsafelyTreatInsecureOriginAsSecure, |
1505 translate::switches::kTranslateSecurityOrigin, | 1504 translate::switches::kTranslateSecurityOrigin, |
(...skipping 1106 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2612 switches::kDisableWebRtcEncryption, | 2611 switches::kDisableWebRtcEncryption, |
2613 }; | 2612 }; |
2614 to_command_line->CopySwitchesFrom(from_command_line, | 2613 to_command_line->CopySwitchesFrom(from_command_line, |
2615 kWebRtcDevSwitchNames, | 2614 kWebRtcDevSwitchNames, |
2616 arraysize(kWebRtcDevSwitchNames)); | 2615 arraysize(kWebRtcDevSwitchNames)); |
2617 } | 2616 } |
2618 } | 2617 } |
2619 #endif // defined(ENABLE_WEBRTC) | 2618 #endif // defined(ENABLE_WEBRTC) |
2620 | 2619 |
2621 } // namespace chrome | 2620 } // namespace chrome |
OLD | NEW |