Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(55)

Unified Diff: extensions/browser/updater/update_service.cc

Issue 803313003: Rename omaha_client and similar tokens to update_client in all contexts. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@lkgr
Patch Set: rebase to master Created 5 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « extensions/browser/DEPS ('k') | extensions/browser/updater/update_service_browsertest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: extensions/browser/updater/update_service.cc
diff --git a/extensions/browser/updater/update_service.cc b/extensions/browser/updater/update_service.cc
index d1b0caebe42d153cff85b57305cf82f7c940fe20..ece627a53c11694cb8f1741e6b43cdd4445d1dac 100644
--- a/extensions/browser/updater/update_service.cc
+++ b/extensions/browser/updater/update_service.cc
@@ -4,14 +4,16 @@
#include "extensions/browser/updater/update_service.h"
+#include <set>
+
#include "base/message_loop/message_loop.h"
-#include "components/omaha_client/omaha_query_params.h"
+#include "components/update_client/update_query_params.h"
#include "content/public/browser/browser_context.h"
#include "extensions/browser/updater/extension_downloader.h"
#include "extensions/browser/updater/update_service_factory.h"
#include "extensions/common/extension_urls.h"
-using omaha_client::OmahaQueryParams;
+using update_client::UpdateQueryParams;
namespace extensions {
@@ -34,7 +36,7 @@ UpdateService::UpdateService(content::BrowserContext* context)
: browser_context_(context),
downloader_(new ExtensionDownloader(this, context->GetRequestContext())) {
downloader_->set_manifest_query_params(
- OmahaQueryParams::Get(OmahaQueryParams::CRX));
+ UpdateQueryParams::Get(UpdateQueryParams::CRX));
}
UpdateService::~UpdateService() {
« no previous file with comments | « extensions/browser/DEPS ('k') | extensions/browser/updater/update_service_browsertest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698