| 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 <map> | 7 #include <map> |
| 8 #include <set> | 8 #include <set> |
| 9 #include <utility> | 9 #include <utility> |
| 10 #include <vector> | 10 #include <vector> |
| (...skipping 1872 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1883 autofill::switches::kEnableSuggestionsWithSubstringMatch, | 1883 autofill::switches::kEnableSuggestionsWithSubstringMatch, |
| 1884 autofill::switches::kIgnoreAutocompleteOffForAutofill, | 1884 autofill::switches::kIgnoreAutocompleteOffForAutofill, |
| 1885 autofill::switches::kLocalHeuristicsOnlyForPasswordGeneration, | 1885 autofill::switches::kLocalHeuristicsOnlyForPasswordGeneration, |
| 1886 autofill::switches::kShowAutofillSignatures, | 1886 autofill::switches::kShowAutofillSignatures, |
| 1887 #if BUILDFLAG(ENABLE_EXTENSIONS) | 1887 #if BUILDFLAG(ENABLE_EXTENSIONS) |
| 1888 extensions::switches::kAllowHTTPBackgroundPage, | 1888 extensions::switches::kAllowHTTPBackgroundPage, |
| 1889 extensions::switches::kAllowLegacyExtensionManifests, | 1889 extensions::switches::kAllowLegacyExtensionManifests, |
| 1890 extensions::switches::kEnableEmbeddedExtensionOptions, | 1890 extensions::switches::kEnableEmbeddedExtensionOptions, |
| 1891 extensions::switches::kEnableExperimentalExtensionApis, | 1891 extensions::switches::kEnableExperimentalExtensionApis, |
| 1892 extensions::switches::kExtensionsOnChromeURLs, | 1892 extensions::switches::kExtensionsOnChromeURLs, |
| 1893 extensions::switches::kIsolateExtensions, | |
| 1894 extensions::switches::kNativeCrxBindings, | 1893 extensions::switches::kNativeCrxBindings, |
| 1895 extensions::switches::kWhitelistedExtensionID, | 1894 extensions::switches::kWhitelistedExtensionID, |
| 1896 extensions::switches::kYieldBetweenContentScriptRuns, | 1895 extensions::switches::kYieldBetweenContentScriptRuns, |
| 1897 #endif | 1896 #endif |
| 1898 switches::kAllowInsecureLocalhost, | 1897 switches::kAllowInsecureLocalhost, |
| 1899 switches::kAppsGalleryURL, | 1898 switches::kAppsGalleryURL, |
| 1900 switches::kCloudPrintURL, | 1899 switches::kCloudPrintURL, |
| 1901 switches::kCloudPrintXmppEndpoint, | 1900 switches::kCloudPrintXmppEndpoint, |
| 1902 switches::kDisableBundledPpapiFlash, | 1901 switches::kDisableBundledPpapiFlash, |
| 1903 switches::kDisableCastStreamingHWEncoding, | 1902 switches::kDisableCastStreamingHWEncoding, |
| (...skipping 1705 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3609 RedirectNonUINonIOBrowserThreadsToTaskScheduler() { | 3608 RedirectNonUINonIOBrowserThreadsToTaskScheduler() { |
| 3610 return variations::GetVariationParamValue( | 3609 return variations::GetVariationParamValue( |
| 3611 "BrowserScheduler", "RedirectNonUINonIOBrowserThreads") == "true"; | 3610 "BrowserScheduler", "RedirectNonUINonIOBrowserThreads") == "true"; |
| 3612 } | 3611 } |
| 3613 | 3612 |
| 3614 // static | 3613 // static |
| 3615 void ChromeContentBrowserClient::SetDefaultQuotaSettingsForTesting( | 3614 void ChromeContentBrowserClient::SetDefaultQuotaSettingsForTesting( |
| 3616 const storage::QuotaSettings* settings) { | 3615 const storage::QuotaSettings* settings) { |
| 3617 g_default_quota_settings = settings; | 3616 g_default_quota_settings = settings; |
| 3618 } | 3617 } |
| OLD | NEW |