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

Unified Diff: chrome/browser/web_resource/notification_promo.cc

Issue 1269773002: Cleanup VersionInfo after componentization. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 5 years, 4 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 | « chrome/browser/web_applications/web_app_mac_unittest.mm ('k') | chrome/chrome_common.gypi » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/web_resource/notification_promo.cc
diff --git a/chrome/browser/web_resource/notification_promo.cc b/chrome/browser/web_resource/notification_promo.cc
index 387af4c2909f35c25a5ed35884b24ade89fe047d..09c6ac610cffe876ed982ffafac0fd4bd6e509d8 100644
--- a/chrome/browser/web_resource/notification_promo.cc
+++ b/chrome/browser/web_resource/notification_promo.cc
@@ -20,9 +20,10 @@
#include "chrome/browser/browser_process.h"
#include "chrome/browser/ui/app_list/app_list_util.h"
#include "chrome/browser/web_resource/promo_resource_service.h"
-#include "chrome/common/chrome_version_info.h"
+#include "chrome/common/channel_info.h"
#include "chrome/common/pref_names.h"
#include "components/pref_registry/pref_registry_syncable.h"
+#include "components/version_info/version_info.h"
#include "content/public/browser/user_metrics.h"
#include "net/base/url_util.h"
#include "ui/base/device_form_factor.h"
@@ -86,8 +87,7 @@ const char* ChannelString() {
// TODO(achuith): Move NotificationPromo::PromoServerURL to the blocking pool.
base::ThreadRestrictions::ScopedAllowIO allow_io;
#endif
- const version_info::Channel channel =
- chrome::VersionInfo::GetChannel();
+ const version_info::Channel channel = chrome::GetChannel();
switch (channel) {
case version_info::Channel::CANARY:
return "canary";
@@ -470,7 +470,7 @@ GURL NotificationPromo::PromoServerURL() {
GURL url(promo_server_url);
AppendQueryParameter(&url, "dist", ChannelString());
AppendQueryParameter(&url, "osname", PlatformString());
- AppendQueryParameter(&url, "branding", chrome::VersionInfo().Version());
+ AppendQueryParameter(&url, "branding", version_info::GetVersionNumber());
AppendQueryParameter(&url, "osver", base::SysInfo::OperatingSystemVersion());
DVLOG(1) << "PromoServerURL=" << url.spec();
// Note that locale param is added by WebResourceService.
« no previous file with comments | « chrome/browser/web_applications/web_app_mac_unittest.mm ('k') | chrome/chrome_common.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698