Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(235)

Side by Side Diff: chrome/browser/chrome_content_browser_client.cc

Issue 2706403003: [Autofill] Fix of crashes caused by show-autofill-signatures flag (Closed)
Patch Set: Added an entry to histograms.xml Created 3 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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
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 }
OLDNEW
« no previous file with comments | « chrome/browser/about_flags.cc ('k') | chrome/renderer/autofill/password_autofill_agent_browsertest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698