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 906 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
917 switches::kEnableBundledPpapiFlash, | 917 switches::kEnableBundledPpapiFlash, |
918 switches::kEnableCrxlessWebApps, | 918 switches::kEnableCrxlessWebApps, |
919 switches::kEnableExperimentalExtensionApis, | 919 switches::kEnableExperimentalExtensionApis, |
920 switches::kEnableFramelessConstrainedDialogs, | 920 switches::kEnableFramelessConstrainedDialogs, |
921 switches::kEnableIPCFuzzing, | 921 switches::kEnableIPCFuzzing, |
922 switches::kEnableNaCl, | 922 switches::kEnableNaCl, |
923 switches::kEnableNaClIPCProxy, | 923 switches::kEnableNaClIPCProxy, |
924 switches::kEnablePasswordGeneration, | 924 switches::kEnablePasswordGeneration, |
925 switches::kEnablePnacl, | 925 switches::kEnablePnacl, |
926 switches::kEnableWatchdog, | 926 switches::kEnableWatchdog, |
| 927 switches::kEnableWebView, |
927 switches::kMemoryProfiling, | 928 switches::kMemoryProfiling, |
928 switches::kMessageLoopHistogrammer, | 929 switches::kMessageLoopHistogrammer, |
929 switches::kNoJsRandomness, | 930 switches::kNoJsRandomness, |
930 switches::kPerformCrashAnalysis, | 931 switches::kPerformCrashAnalysis, |
931 switches::kPlaybackMode, | 932 switches::kPlaybackMode, |
932 switches::kPpapiFlashArgs, | 933 switches::kPpapiFlashArgs, |
933 switches::kPpapiFlashInProcess, | 934 switches::kPpapiFlashInProcess, |
934 switches::kPpapiFlashPath, | 935 switches::kPpapiFlashPath, |
935 switches::kPpapiFlashVersion, | 936 switches::kPpapiFlashVersion, |
936 switches::kProfilingAtStart, | 937 switches::kProfilingAtStart, |
(...skipping 940 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1877 partition_id = extension->id(); | 1878 partition_id = extension->id(); |
1878 } | 1879 } |
1879 | 1880 |
1880 // Enforce that IsValidStoragePartitionId() implementation stays in sync. | 1881 // Enforce that IsValidStoragePartitionId() implementation stays in sync. |
1881 DCHECK(IsValidStoragePartitionId(browser_context, partition_id)); | 1882 DCHECK(IsValidStoragePartitionId(browser_context, partition_id)); |
1882 return partition_id; | 1883 return partition_id; |
1883 } | 1884 } |
1884 | 1885 |
1885 | 1886 |
1886 } // namespace chrome | 1887 } // namespace chrome |
OLD | NEW |