| 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 1515 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1526 switches::kAllowNaClFileHandleAPI, | 1526 switches::kAllowNaClFileHandleAPI, |
| 1527 switches::kAppsCheckoutURL, | 1527 switches::kAppsCheckoutURL, |
| 1528 switches::kAppsGalleryURL, | 1528 switches::kAppsGalleryURL, |
| 1529 switches::kCloudPrintServiceURL, | 1529 switches::kCloudPrintServiceURL, |
| 1530 switches::kDebugPrint, | 1530 switches::kDebugPrint, |
| 1531 switches::kDisableBundledPpapiFlash, | 1531 switches::kDisableBundledPpapiFlash, |
| 1532 switches::kDisableExtensionsResourceWhitelist, | 1532 switches::kDisableExtensionsResourceWhitelist, |
| 1533 switches::kDisablePnacl, | 1533 switches::kDisablePnacl, |
| 1534 switches::kDisableScriptedPrintThrottling, | 1534 switches::kDisableScriptedPrintThrottling, |
| 1535 switches::kEnableAdview, | 1535 switches::kEnableAdview, |
| 1536 switches::kEnableAdviewSrcAttribute, | |
| 1537 switches::kEnableAppWindowControls, | 1536 switches::kEnableAppWindowControls, |
| 1538 switches::kEnableBenchmarking, | 1537 switches::kEnableBenchmarking, |
| 1539 switches::kEnableNaCl, | 1538 switches::kEnableNaCl, |
| 1540 switches::kEnableNetBenchmarking, | 1539 switches::kEnableNetBenchmarking, |
| 1541 switches::kEnableStreamlinedHostedApps, | 1540 switches::kEnableStreamlinedHostedApps, |
| 1542 switches::kEnableWatchdog, | 1541 switches::kEnableWatchdog, |
| 1543 switches::kMemoryProfiling, | 1542 switches::kMemoryProfiling, |
| 1544 switches::kMessageLoopHistogrammer, | 1543 switches::kMessageLoopHistogrammer, |
| 1545 switches::kNoJsRandomness, | 1544 switches::kNoJsRandomness, |
| 1546 switches::kOutOfProcessPdf, | 1545 switches::kOutOfProcessPdf, |
| (...skipping 1124 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2671 // releases of Chrome. Permitting "Unknown" allows these APIs to be used on | 2670 // releases of Chrome. Permitting "Unknown" allows these APIs to be used on |
| 2672 // Chromium builds as well. | 2671 // Chromium builds as well. |
| 2673 return channel <= chrome::VersionInfo::CHANNEL_DEV; | 2672 return channel <= chrome::VersionInfo::CHANNEL_DEV; |
| 2674 #else | 2673 #else |
| 2675 return false; | 2674 return false; |
| 2676 #endif | 2675 #endif |
| 2677 } | 2676 } |
| 2678 | 2677 |
| 2679 | 2678 |
| 2680 } // namespace chrome | 2679 } // namespace chrome |
| OLD | NEW |