| Index: chrome/browser/search_engines/template_url_scraper_unittest.cc
|
| ===================================================================
|
| --- chrome/browser/search_engines/template_url_scraper_unittest.cc (revision 20760)
|
| +++ chrome/browser/search_engines/template_url_scraper_unittest.cc (working copy)
|
| @@ -11,7 +11,7 @@
|
| #include "chrome/common/notification_type.h"
|
| #include "chrome/test/in_process_browser_test.h"
|
| #include "chrome/test/ui_test_utils.h"
|
| -#include "net/base/host_resolver_unittest.h"
|
| +#include "net/base/mock_host_resolver.h"
|
| #include "net/base/net_util.h"
|
|
|
| namespace {
|
| @@ -21,10 +21,10 @@
|
| }
|
|
|
| protected:
|
| - virtual void ConfigureHostMapper(net::RuleBasedHostMapper* host_mapper) {
|
| - InProcessBrowserTest::ConfigureHostMapper(host_mapper);
|
| + virtual void ConfigureHostResolverProc(net::RuleBasedHostResolverProc* proc) {
|
| + InProcessBrowserTest::ConfigureHostResolverProc(proc);
|
| // We use foo.com in our tests.
|
| - host_mapper->AddRule("*.foo.com", "localhost");
|
| + proc->AddRule("*.foo.com", "localhost");
|
| }
|
|
|
| private:
|
|
|
| Property changes on: chrome\browser\search_engines\template_url_scraper_unittest.cc
|
| ___________________________________________________________________
|
| Added: svn:eol-style
|
| + LF
|
|
|
|
|