| 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 905 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 916 switches::kDisableBundledPpapiFlash, | 916 switches::kDisableBundledPpapiFlash, |
| 917 switches::kDisableExtensionsResourceWhitelist, | 917 switches::kDisableExtensionsResourceWhitelist, |
| 918 switches::kDisableScriptedPrintThrottling, | 918 switches::kDisableScriptedPrintThrottling, |
| 919 switches::kDumpHistogramsOnExit, | 919 switches::kDumpHistogramsOnExit, |
| 920 switches::kEnableBenchmarking, | 920 switches::kEnableBenchmarking, |
| 921 switches::kEnableBundledPpapiFlash, | 921 switches::kEnableBundledPpapiFlash, |
| 922 switches::kEnableChromeStyleDialogs, | 922 switches::kEnableChromeStyleDialogs, |
| 923 switches::kEnableCrxlessWebApps, | 923 switches::kEnableCrxlessWebApps, |
| 924 switches::kEnableExperimentalExtensionApis, | 924 switches::kEnableExperimentalExtensionApis, |
| 925 switches::kEnableIPCFuzzing, | 925 switches::kEnableIPCFuzzing, |
| 926 switches::kEnableInteractiveAutocomplete, |
| 926 switches::kEnableNaCl, | 927 switches::kEnableNaCl, |
| 927 switches::kEnableNaClIPCProxy, | 928 switches::kEnableNaClIPCProxy, |
| 928 switches::kEnablePasswordGeneration, | 929 switches::kEnablePasswordGeneration, |
| 929 switches::kEnablePnacl, | 930 switches::kEnablePnacl, |
| 930 switches::kEnableWatchdog, | 931 switches::kEnableWatchdog, |
| 931 switches::kMemoryProfiling, | 932 switches::kMemoryProfiling, |
| 932 switches::kMessageLoopHistogrammer, | 933 switches::kMessageLoopHistogrammer, |
| 933 switches::kNoJsRandomness, | 934 switches::kNoJsRandomness, |
| 934 switches::kPerformCrashAnalysis, | 935 switches::kPerformCrashAnalysis, |
| 935 switches::kPlaybackMode, | 936 switches::kPlaybackMode, |
| (...skipping 950 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1886 partition_id = extension->id(); | 1887 partition_id = extension->id(); |
| 1887 } | 1888 } |
| 1888 | 1889 |
| 1889 // Enforce that IsValidStoragePartitionId() implementation stays in sync. | 1890 // Enforce that IsValidStoragePartitionId() implementation stays in sync. |
| 1890 DCHECK(IsValidStoragePartitionId(browser_context, partition_id)); | 1891 DCHECK(IsValidStoragePartitionId(browser_context, partition_id)); |
| 1891 return partition_id; | 1892 return partition_id; |
| 1892 } | 1893 } |
| 1893 | 1894 |
| 1894 | 1895 |
| 1895 } // namespace chrome | 1896 } // namespace chrome |
| OLD | NEW |