| Index: chrome/browser/extensions/webstore_inline_installer.cc
|
| diff --git a/chrome/browser/extensions/webstore_inline_installer.cc b/chrome/browser/extensions/webstore_inline_installer.cc
|
| index f97aed0b63eec321395d254c843a5fec97d03133..d24ec32c8a34e0179cf39d41b4d70fcbd9e15fe0 100644
|
| --- a/chrome/browser/extensions/webstore_inline_installer.cc
|
| +++ b/chrome/browser/extensions/webstore_inline_installer.cc
|
| @@ -23,9 +23,9 @@
|
| #include "content/public/browser/utility_process_host.h"
|
| #include "content/public/browser/utility_process_host_client.h"
|
| #include "content/public/browser/web_contents.h"
|
| -#include "content/public/common/url_fetcher.h"
|
| #include "net/base/escape.h"
|
| #include "net/base/load_flags.h"
|
| +#include "net/url_request/url_fetcher.h"
|
| #include "net/url_request/url_request_status.h"
|
|
|
| using content::BrowserThread;
|
| @@ -171,7 +171,7 @@ void WebstoreInlineInstaller::BeginInstall() {
|
|
|
| GURL webstore_data_url(extension_urls::GetWebstoreItemJsonDataURL(id_));
|
|
|
| - webstore_data_url_fetcher_.reset(content::URLFetcher::Create(
|
| + webstore_data_url_fetcher_.reset(net::URLFetcher::Create(
|
| webstore_data_url, net::URLFetcher::GET, this));
|
| Profile* profile = Profile::FromBrowserContext(
|
| web_contents()->GetBrowserContext());
|
|
|