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

Unified Diff: chrome/browser/net/proxy_service_factory.cc

Issue 1989163002: Enable out-of-process pac by default. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/net/proxy_service_factory.cc
diff --git a/chrome/browser/net/proxy_service_factory.cc b/chrome/browser/net/proxy_service_factory.cc
index 28b892768d137c32c2f16b27896c5cac0f4fb6e3..26da0f6d766a98dc9242c1919a4e8795a0746451 100644
--- a/chrome/browser/net/proxy_service_factory.cc
+++ b/chrome/browser/net/proxy_service_factory.cc
@@ -44,14 +44,11 @@ namespace {
#if !defined(OS_ANDROID)
bool EnableOutOfProcessV8Pac(const base::CommandLine& command_line) {
- const std::string group_name =
- base::FieldTrialList::FindFullName("OutOfProcessPac");
-
if (command_line.HasSwitch(switches::kDisableOutOfProcessPac))
return false;
if (command_line.HasSwitch(switches::kV8PacMojoOutOfProcess))
return true;
- return group_name == "Enabled";
+ return true;
}
#endif // !defined(OS_ANDROID)
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698