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

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

Issue 2850793005: Remove command line/field trial support and configs for Isolate Extensions. (Closed)
Patch Set: Remove unused headers from extension_process_policy.h Created 3 years, 7 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 1886 matching lines...) Expand 10 before | Expand all | Expand 10 after
1897 autofill::switches::kEnableSuggestionsWithSubstringMatch, 1897 autofill::switches::kEnableSuggestionsWithSubstringMatch,
1898 autofill::switches::kIgnoreAutocompleteOffForAutofill, 1898 autofill::switches::kIgnoreAutocompleteOffForAutofill,
1899 autofill::switches::kLocalHeuristicsOnlyForPasswordGeneration, 1899 autofill::switches::kLocalHeuristicsOnlyForPasswordGeneration,
1900 autofill::switches::kShowAutofillSignatures, 1900 autofill::switches::kShowAutofillSignatures,
1901 #if BUILDFLAG(ENABLE_EXTENSIONS) 1901 #if BUILDFLAG(ENABLE_EXTENSIONS)
1902 extensions::switches::kAllowHTTPBackgroundPage, 1902 extensions::switches::kAllowHTTPBackgroundPage,
1903 extensions::switches::kAllowLegacyExtensionManifests, 1903 extensions::switches::kAllowLegacyExtensionManifests,
1904 extensions::switches::kEnableEmbeddedExtensionOptions, 1904 extensions::switches::kEnableEmbeddedExtensionOptions,
1905 extensions::switches::kEnableExperimentalExtensionApis, 1905 extensions::switches::kEnableExperimentalExtensionApis,
1906 extensions::switches::kExtensionsOnChromeURLs, 1906 extensions::switches::kExtensionsOnChromeURLs,
1907 extensions::switches::kIsolateExtensions,
1908 extensions::switches::kNativeCrxBindings, 1907 extensions::switches::kNativeCrxBindings,
1909 extensions::switches::kWhitelistedExtensionID, 1908 extensions::switches::kWhitelistedExtensionID,
1910 extensions::switches::kYieldBetweenContentScriptRuns, 1909 extensions::switches::kYieldBetweenContentScriptRuns,
1911 #endif 1910 #endif
1912 switches::kAllowInsecureLocalhost, 1911 switches::kAllowInsecureLocalhost,
1913 switches::kAppsGalleryURL, 1912 switches::kAppsGalleryURL,
1914 switches::kCloudPrintURL, 1913 switches::kCloudPrintURL,
1915 switches::kCloudPrintXmppEndpoint, 1914 switches::kCloudPrintXmppEndpoint,
1916 switches::kDisableBundledPpapiFlash, 1915 switches::kDisableBundledPpapiFlash,
1917 switches::kDisableCastStreamingHWEncoding, 1916 switches::kDisableCastStreamingHWEncoding,
(...skipping 1706 matching lines...) Expand 10 before | Expand all | Expand 10 after
3624 RedirectNonUINonIOBrowserThreadsToTaskScheduler() { 3623 RedirectNonUINonIOBrowserThreadsToTaskScheduler() {
3625 return variations::GetVariationParamValue( 3624 return variations::GetVariationParamValue(
3626 "BrowserScheduler", "RedirectNonUINonIOBrowserThreads") == "true"; 3625 "BrowserScheduler", "RedirectNonUINonIOBrowserThreads") == "true";
3627 } 3626 }
3628 3627
3629 // static 3628 // static
3630 void ChromeContentBrowserClient::SetDefaultQuotaSettingsForTesting( 3629 void ChromeContentBrowserClient::SetDefaultQuotaSettingsForTesting(
3631 const storage::QuotaSettings* settings) { 3630 const storage::QuotaSettings* settings) {
3632 g_default_quota_settings = settings; 3631 g_default_quota_settings = settings;
3633 } 3632 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698