| Index: chrome/browser/extensions/api/management/management_browsertest.cc
|
| diff --git a/chrome/browser/extensions/api/management/management_browsertest.cc b/chrome/browser/extensions/api/management/management_browsertest.cc
|
| index 9f8833318576dc6f086d9d0ce8494bbc1b981369..4809ad18e70e0afe8a241c4782fa3af03bdc605a 100644
|
| --- a/chrome/browser/extensions/api/management/management_browsertest.cc
|
| +++ b/chrome/browser/extensions/api/management/management_browsertest.cc
|
| @@ -244,7 +244,8 @@ IN_PROC_BROWSER_TEST_F(ExtensionManagementTest, MAYBE_AutoUpdate) {
|
| NotificationListener notification_listener;
|
| FilePath basedir = test_data_dir_.AppendASCII("autoupdate");
|
| // Note: This interceptor gets requests on the IO thread.
|
| - scoped_refptr<AutoUpdateInterceptor> interceptor(new AutoUpdateInterceptor());
|
| + scoped_refptr<extensions::AutoUpdateInterceptor> interceptor(
|
| + new extensions::AutoUpdateInterceptor());
|
| net::URLFetcher::SetEnableInterceptionForTests(true);
|
|
|
| interceptor->SetResponseOnIOThread("http://localhost/autoupdate/manifest",
|
| @@ -323,7 +324,8 @@ IN_PROC_BROWSER_TEST_F(ExtensionManagementTest,
|
| NotificationListener notification_listener;
|
| FilePath basedir = test_data_dir_.AppendASCII("autoupdate");
|
| // Note: This interceptor gets requests on the IO thread.
|
| - scoped_refptr<AutoUpdateInterceptor> interceptor(new AutoUpdateInterceptor());
|
| + scoped_refptr<extensions::AutoUpdateInterceptor> interceptor(
|
| + new extensions::AutoUpdateInterceptor());
|
| net::URLFetcher::SetEnableInterceptionForTests(true);
|
|
|
| interceptor->SetResponseOnIOThread("http://localhost/autoupdate/manifest",
|
| @@ -384,7 +386,8 @@ IN_PROC_BROWSER_TEST_F(ExtensionManagementTest, ExternalUrlUpdate) {
|
| FilePath basedir = test_data_dir_.AppendASCII("autoupdate");
|
|
|
| // Note: This interceptor gets requests on the IO thread.
|
| - scoped_refptr<AutoUpdateInterceptor> interceptor(new AutoUpdateInterceptor());
|
| + scoped_refptr<extensions::AutoUpdateInterceptor> interceptor(
|
| + new extensions::AutoUpdateInterceptor());
|
| net::URLFetcher::SetEnableInterceptionForTests(true);
|
|
|
| interceptor->SetResponseOnIOThread("http://localhost/autoupdate/manifest",
|
| @@ -467,7 +470,8 @@ IN_PROC_BROWSER_TEST_F(ExtensionManagementTest, ExternalPolicyRefresh) {
|
| FilePath basedir = test_data_dir_.AppendASCII("autoupdate");
|
|
|
| // Note: This interceptor gets requests on the IO thread.
|
| - scoped_refptr<AutoUpdateInterceptor> interceptor(new AutoUpdateInterceptor());
|
| + scoped_refptr<extensions::AutoUpdateInterceptor> interceptor(
|
| + new extensions::AutoUpdateInterceptor());
|
| net::URLFetcher::SetEnableInterceptionForTests(true);
|
|
|
| interceptor->SetResponseOnIOThread("http://localhost/autoupdate/manifest",
|
| @@ -542,7 +546,8 @@ IN_PROC_BROWSER_TEST_F(ExtensionManagementTest,
|
| ASSERT_TRUE(service->disabled_extensions()->is_empty());
|
|
|
| // Note: This interceptor gets requests on the IO thread.
|
| - scoped_refptr<AutoUpdateInterceptor> interceptor(new AutoUpdateInterceptor());
|
| + scoped_refptr<extensions::AutoUpdateInterceptor> interceptor(
|
| + new extensions::AutoUpdateInterceptor());
|
| net::URLFetcher::SetEnableInterceptionForTests(true);
|
|
|
| interceptor->SetResponseOnIOThread("http://localhost/autoupdate/manifest",
|
|
|