| 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 1549 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1560 switches::kCloudPrintServiceURL, | 1560 switches::kCloudPrintServiceURL, |
| 1561 switches::kDisableBundledPpapiFlash, | 1561 switches::kDisableBundledPpapiFlash, |
| 1562 switches::kDisableExtensionsResourceWhitelist, | 1562 switches::kDisableExtensionsResourceWhitelist, |
| 1563 switches::kDisablePnacl, | 1563 switches::kDisablePnacl, |
| 1564 switches::kDisableScriptedPrintThrottling, | 1564 switches::kDisableScriptedPrintThrottling, |
| 1565 switches::kEnableAdview, | 1565 switches::kEnableAdview, |
| 1566 switches::kEnableAppWindowControls, | 1566 switches::kEnableAppWindowControls, |
| 1567 switches::kEnableBenchmarking, | 1567 switches::kEnableBenchmarking, |
| 1568 switches::kEnableNaCl, | 1568 switches::kEnableNaCl, |
| 1569 switches::kEnableNetBenchmarking, | 1569 switches::kEnableNetBenchmarking, |
| 1570 switches::kEnableOfflineAutoReload, |
| 1570 switches::kEnableStreamlinedHostedApps, | 1571 switches::kEnableStreamlinedHostedApps, |
| 1571 switches::kEnableWatchdog, | 1572 switches::kEnableWatchdog, |
| 1572 switches::kMemoryProfiling, | 1573 switches::kMemoryProfiling, |
| 1573 switches::kMessageLoopHistogrammer, | 1574 switches::kMessageLoopHistogrammer, |
| 1574 switches::kNoJsRandomness, | 1575 switches::kNoJsRandomness, |
| 1575 switches::kOutOfProcessPdf, | 1576 switches::kOutOfProcessPdf, |
| 1576 switches::kPlaybackMode, | 1577 switches::kPlaybackMode, |
| 1577 switches::kPpapiFlashArgs, | 1578 switches::kPpapiFlashArgs, |
| 1578 switches::kPpapiFlashInProcess, | 1579 switches::kPpapiFlashInProcess, |
| 1579 switches::kPpapiFlashPath, | 1580 switches::kPpapiFlashPath, |
| (...skipping 1120 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2700 // releases of Chrome. Permitting "Unknown" allows these APIs to be used on | 2701 // releases of Chrome. Permitting "Unknown" allows these APIs to be used on |
| 2701 // Chromium builds as well. | 2702 // Chromium builds as well. |
| 2702 return channel <= chrome::VersionInfo::CHANNEL_DEV; | 2703 return channel <= chrome::VersionInfo::CHANNEL_DEV; |
| 2703 #else | 2704 #else |
| 2704 return false; | 2705 return false; |
| 2705 #endif | 2706 #endif |
| 2706 } | 2707 } |
| 2707 | 2708 |
| 2708 | 2709 |
| 2709 } // namespace chrome | 2710 } // namespace chrome |
| OLD | NEW |