| Index: chrome/browser/extensions/webstore_installer.cc
|
| diff --git a/chrome/browser/extensions/webstore_installer.cc b/chrome/browser/extensions/webstore_installer.cc
|
| index 1ec913ef69796513599df6a02bf8c164a3b3b3a4..a4f84a5809d17efbf5c8a2697a12bf0f2a6a4c61 100644
|
| --- a/chrome/browser/extensions/webstore_installer.cc
|
| +++ b/chrome/browser/extensions/webstore_installer.cc
|
| @@ -4,6 +4,7 @@
|
|
|
| #include "chrome/browser/extensions/webstore_installer.h"
|
|
|
| +#include <set>
|
| #include <vector>
|
|
|
| #include "base/basictypes.h"
|
| @@ -33,7 +34,7 @@
|
| #include "chrome/common/chrome_paths.h"
|
| #include "chrome/common/chrome_switches.h"
|
| #include "components/crx_file/id_util.h"
|
| -#include "components/omaha_client/omaha_query_params.h"
|
| +#include "components/update_client/update_query_params.h"
|
| #include "content/public/browser/browser_thread.h"
|
| #include "content/public/browser/download_manager.h"
|
| #include "content/public/browser/download_save_info.h"
|
| @@ -199,8 +200,8 @@ GURL WebstoreInstaller::GetWebstoreInstallURL(
|
| std::string url_string = extension_urls::GetWebstoreUpdateUrl().spec();
|
|
|
| GURL url(url_string + "?response=redirect&" +
|
| - omaha_client::OmahaQueryParams::Get(
|
| - omaha_client::OmahaQueryParams::CRX) +
|
| + update_client::UpdateQueryParams::Get(
|
| + update_client::UpdateQueryParams::CRX) +
|
| "&x=" + net::EscapeQueryParamValue(JoinString(params, '&'), true));
|
| DCHECK(url.is_valid());
|
|
|
|
|