summaryrefslogtreecommitdiffstats
path: root/chrome/browser/io_thread.cc
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/browser/io_thread.cc')
-rw-r--r--chrome/browser/io_thread.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/chrome/browser/io_thread.cc b/chrome/browser/io_thread.cc
index 3c7fdc6..55713b7 100644
--- a/chrome/browser/io_thread.cc
+++ b/chrome/browser/io_thread.cc
@@ -62,8 +62,8 @@ net::HostResolver* CreateGlobalHostResolver(net::NetLog* net_log) {
// For each option (i.e., non-default), we have a fixed probability.
base::FieldTrial::Probability kProbabilityPerGroup = 100; // 10%.
- scoped_refptr<base::FieldTrial> trial =
- new base::FieldTrial("DnsParallelism", kDivisor);
+ scoped_refptr<base::FieldTrial> trial(
+ new base::FieldTrial("DnsParallelism", kDivisor));
// List options with different counts.
// Firefox limits total to 8 in parallel, and default is currently 50.