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 1567 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1578 switches::kCloudPrintServiceURL, | 1578 switches::kCloudPrintServiceURL, |
1579 switches::kDisableBundledPpapiFlash, | 1579 switches::kDisableBundledPpapiFlash, |
1580 switches::kDisableExtensionsResourceWhitelist, | 1580 switches::kDisableExtensionsResourceWhitelist, |
1581 switches::kDisablePnacl, | 1581 switches::kDisablePnacl, |
1582 switches::kDisableScriptedPrintThrottling, | 1582 switches::kDisableScriptedPrintThrottling, |
1583 switches::kEnableAdview, | 1583 switches::kEnableAdview, |
1584 switches::kEnableAppWindowControls, | 1584 switches::kEnableAppWindowControls, |
1585 switches::kEnableBenchmarking, | 1585 switches::kEnableBenchmarking, |
1586 switches::kEnableNaCl, | 1586 switches::kEnableNaCl, |
1587 switches::kEnableNetBenchmarking, | 1587 switches::kEnableNetBenchmarking, |
| 1588 switches::kEnableOfflineAutoReload, |
1588 switches::kEnableStreamlinedHostedApps, | 1589 switches::kEnableStreamlinedHostedApps, |
1589 switches::kEnableWatchdog, | 1590 switches::kEnableWatchdog, |
1590 switches::kMemoryProfiling, | 1591 switches::kMemoryProfiling, |
1591 switches::kMessageLoopHistogrammer, | 1592 switches::kMessageLoopHistogrammer, |
1592 switches::kNoJsRandomness, | 1593 switches::kNoJsRandomness, |
1593 switches::kOutOfProcessPdf, | 1594 switches::kOutOfProcessPdf, |
1594 switches::kPlaybackMode, | 1595 switches::kPlaybackMode, |
1595 switches::kPpapiFlashArgs, | 1596 switches::kPpapiFlashArgs, |
1596 switches::kPpapiFlashPath, | 1597 switches::kPpapiFlashPath, |
1597 switches::kPpapiFlashVersion, | 1598 switches::kPpapiFlashVersion, |
(...skipping 1121 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2719 // releases of Chrome. Permitting "Unknown" allows these APIs to be used on | 2720 // releases of Chrome. Permitting "Unknown" allows these APIs to be used on |
2720 // Chromium builds as well. | 2721 // Chromium builds as well. |
2721 return channel <= chrome::VersionInfo::CHANNEL_DEV; | 2722 return channel <= chrome::VersionInfo::CHANNEL_DEV; |
2722 #else | 2723 #else |
2723 return false; | 2724 return false; |
2724 #endif | 2725 #endif |
2725 } | 2726 } |
2726 | 2727 |
2727 | 2728 |
2728 } // namespace chrome | 2729 } // namespace chrome |
OLD | NEW |