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 1819 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1830 #if defined(OS_ANDROID) | 1830 #if defined(OS_ANDROID) |
1831 autofill::switches::kDisableAccessorySuggestionView, | 1831 autofill::switches::kDisableAccessorySuggestionView, |
1832 autofill::switches::kEnableAccessorySuggestionView, | 1832 autofill::switches::kEnableAccessorySuggestionView, |
1833 #endif | 1833 #endif |
1834 autofill::switches::kDisablePasswordGeneration, | 1834 autofill::switches::kDisablePasswordGeneration, |
1835 autofill::switches::kEnablePasswordGeneration, | 1835 autofill::switches::kEnablePasswordGeneration, |
1836 autofill::switches::kEnableSingleClickAutofill, | 1836 autofill::switches::kEnableSingleClickAutofill, |
1837 autofill::switches::kEnableSuggestionsWithSubstringMatch, | 1837 autofill::switches::kEnableSuggestionsWithSubstringMatch, |
1838 autofill::switches::kIgnoreAutocompleteOffForAutofill, | 1838 autofill::switches::kIgnoreAutocompleteOffForAutofill, |
1839 autofill::switches::kLocalHeuristicsOnlyForPasswordGeneration, | 1839 autofill::switches::kLocalHeuristicsOnlyForPasswordGeneration, |
| 1840 autofill::switches::kShowAutofillSignatures, |
1840 #if BUILDFLAG(ENABLE_EXTENSIONS) | 1841 #if BUILDFLAG(ENABLE_EXTENSIONS) |
1841 extensions::switches::kAllowHTTPBackgroundPage, | 1842 extensions::switches::kAllowHTTPBackgroundPage, |
1842 extensions::switches::kAllowLegacyExtensionManifests, | 1843 extensions::switches::kAllowLegacyExtensionManifests, |
1843 extensions::switches::kEnableEmbeddedExtensionOptions, | 1844 extensions::switches::kEnableEmbeddedExtensionOptions, |
1844 extensions::switches::kEnableExperimentalExtensionApis, | 1845 extensions::switches::kEnableExperimentalExtensionApis, |
1845 extensions::switches::kExtensionsOnChromeURLs, | 1846 extensions::switches::kExtensionsOnChromeURLs, |
1846 extensions::switches::kIsolateExtensions, | 1847 extensions::switches::kIsolateExtensions, |
1847 extensions::switches::kNativeCrxBindings, | 1848 extensions::switches::kNativeCrxBindings, |
1848 extensions::switches::kWhitelistedExtensionID, | 1849 extensions::switches::kWhitelistedExtensionID, |
1849 #endif | 1850 #endif |
(...skipping 1690 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3540 RedirectNonUINonIOBrowserThreadsToTaskScheduler() { | 3541 RedirectNonUINonIOBrowserThreadsToTaskScheduler() { |
3541 return variations::GetVariationParamValue( | 3542 return variations::GetVariationParamValue( |
3542 "BrowserScheduler", "RedirectNonUINonIOBrowserThreads") == "true"; | 3543 "BrowserScheduler", "RedirectNonUINonIOBrowserThreads") == "true"; |
3543 } | 3544 } |
3544 | 3545 |
3545 // static | 3546 // static |
3546 void ChromeContentBrowserClient::SetDefaultQuotaSettingsForTesting( | 3547 void ChromeContentBrowserClient::SetDefaultQuotaSettingsForTesting( |
3547 const storage::QuotaSettings* settings) { | 3548 const storage::QuotaSettings* settings) { |
3548 g_default_quota_settings = settings; | 3549 g_default_quota_settings = settings; |
3549 } | 3550 } |
OLD | NEW |