| 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 8d085e8c256f8030b3271e374391f111ab60cbab..c75d94bb0813fc2efd50f856af4a96f9876dd771 100644
|
| --- a/chrome/browser/extensions/webstore_inline_installer.cc
|
| +++ b/chrome/browser/extensions/webstore_inline_installer.cc
|
| @@ -22,9 +22,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;
|
| @@ -170,7 +170,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());
|
|
|