| Index: chrome/browser/component_updater/component_updater_service_unittest.cc
|
| diff --git a/chrome/browser/component_updater/component_updater_service_unittest.cc b/chrome/browser/component_updater/component_updater_service_unittest.cc
|
| index b1fe380bc8ffc472b727f94bf271c9783af123f0..6a25757cdfa4f84088d7d6a518c55bfb9e007a39 100644
|
| --- a/chrome/browser/component_updater/component_updater_service_unittest.cc
|
| +++ b/chrome/browser/component_updater/component_updater_service_unittest.cc
|
| @@ -16,11 +16,11 @@
|
| #include "chrome/common/chrome_paths.h"
|
| #include "content/public/browser/notification_observer.h"
|
| #include "content/public/browser/notification_service.h"
|
| -#include "content/public/common/url_fetcher.h"
|
| #include "content/public/test/test_browser_thread.h"
|
| #include "content/public/test/test_notification_tracker.h"
|
| #include "googleurl/src/gurl.h"
|
| #include "libxml/globals.h"
|
| +#include "net/url_request/url_fetcher.h"
|
| #include "net/url_request/url_request_test_util.h"
|
| #include "testing/gtest/include/gtest/gtest.h"
|
|
|
| @@ -158,11 +158,11 @@ class ComponentUpdaterTest : public testing::Test {
|
| notification_tracker_.ListenFor(
|
| notifications[ix], content::NotificationService::AllSources());
|
| }
|
| - content::URLFetcher::SetEnableInterceptionForTests(true);
|
| + net::URLFetcher::SetEnableInterceptionForTests(true);
|
| }
|
|
|
| ~ComponentUpdaterTest() {
|
| - content::URLFetcher::SetEnableInterceptionForTests(false);
|
| + net::URLFetcher::SetEnableInterceptionForTests(false);
|
| }
|
|
|
| void TearDown() {
|
|
|