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

Side by Side Diff: chrome/browser/net/pref_proxy_config_tracker_impl_unittest.cc

Issue 64193003: Clean up PrefServiceBuilder (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix indentation Created 7 years, 1 month 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 | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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/net/pref_proxy_config_tracker_impl.h" 5 #include "chrome/browser/net/pref_proxy_config_tracker_impl.h"
6 6
7 #include "base/command_line.h" 7 #include "base/command_line.h"
8 #include "base/files/file_path.h" 8 #include "base/files/file_path.h"
9 #include "base/message_loop/message_loop.h" 9 #include "base/message_loop/message_loop.h"
10 #include "base/prefs/pref_registry_simple.h" 10 #include "base/prefs/pref_registry_simple.h"
(...skipping 323 matching lines...) Expand 10 before | Expand all | Expand 10 after
334 virtual void SetUp() { 334 virtual void SetUp() {
335 for (size_t i = 0; i < arraysize(GetParam().switches); i++) { 335 for (size_t i = 0; i < arraysize(GetParam().switches); i++) {
336 const char* name = GetParam().switches[i].name; 336 const char* name = GetParam().switches[i].name;
337 const char* value = GetParam().switches[i].value; 337 const char* value = GetParam().switches[i].value;
338 if (name && value) 338 if (name && value)
339 command_line_.AppendSwitchASCII(name, value); 339 command_line_.AppendSwitchASCII(name, value);
340 else if (name) 340 else if (name)
341 command_line_.AppendSwitch(name); 341 command_line_.AppendSwitch(name);
342 } 342 }
343 scoped_refptr<PrefRegistrySimple> registry = new PrefRegistrySimple; 343 scoped_refptr<PrefRegistrySimple> registry = new PrefRegistrySimple;
344 pref_service_.reset(PrefServiceMockBuilder().WithCommandLine(&command_line_) 344 PrefServiceMockBuilder builder;
345 .Create(registry.get())); 345 builder.SetCommandLine(&command_line_);
346 pref_service_ = builder.Create(registry.get()).Pass();
346 Init(pref_service_.get(), registry.get()); 347 Init(pref_service_.get(), registry.get());
347 } 348 }
348 349
349 private: 350 private:
350 CommandLine command_line_; 351 CommandLine command_line_;
351 scoped_ptr<PrefService> pref_service_; 352 scoped_ptr<PrefService> pref_service_;
352 }; 353 };
353 354
354 TEST_P(PrefProxyConfigTrackerImplCommandLineTest, CommandLine) { 355 TEST_P(PrefProxyConfigTrackerImplCommandLineTest, CommandLine) {
355 net::ProxyConfig config; 356 net::ProxyConfig config;
(...skipping 119 matching lines...) Expand 10 before | Expand all | Expand 10 after
475 net::ProxyRulesExpectation::Empty(), 476 net::ProxyRulesExpectation::Empty(),
476 }, 477 },
477 }; 478 };
478 479
479 INSTANTIATE_TEST_CASE_P( 480 INSTANTIATE_TEST_CASE_P(
480 PrefProxyConfigTrackerImplCommandLineTestInstance, 481 PrefProxyConfigTrackerImplCommandLineTestInstance,
481 PrefProxyConfigTrackerImplCommandLineTest, 482 PrefProxyConfigTrackerImplCommandLineTest,
482 testing::ValuesIn(kCommandLineTestParams)); 483 testing::ValuesIn(kCommandLineTestParams));
483 484
484 } // namespace 485 } // namespace
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698