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

Unified Diff: chrome/common/channel_info_mac.mm

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/common/channel_info_chromeos.cc ('k') | chrome/common/channel_info_posix.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/common/channel_info_mac.mm
diff --git a/chrome/common/chrome_version_info_mac.mm b/chrome/common/channel_info_mac.mm
similarity index 88%
rename from chrome/common/chrome_version_info_mac.mm
rename to chrome/common/channel_info_mac.mm
index f5ceea3e1a46993a1dea5ab0d1b36decaac982dc..c9a3d6da681a22c51cfe01a56f735b0f90ef5504 100644
--- a/chrome/common/chrome_version_info_mac.mm
+++ b/chrome/common/channel_info_mac.mm
@@ -2,18 +2,18 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-#include "chrome/common/chrome_version_info.h"
+#include "chrome/common/channel_info.h"
#import <Foundation/Foundation.h>
#include "base/basictypes.h"
#include "base/mac/bundle_locations.h"
#include "base/strings/sys_string_conversions.h"
+#include "components/version_info/version_info.h"
namespace chrome {
-// static
-std::string VersionInfo::GetVersionStringModifier() {
+std::string GetChannelString() {
#if defined(GOOGLE_CHROME_BUILD)
// Use the main Chrome application bundle and not the framework bundle.
// Keystone keys don't live in the framework.
@@ -42,10 +42,9 @@ std::string VersionInfo::GetVersionStringModifier() {
#endif
}
-// static
-version_info::Channel VersionInfo::GetChannel() {
+version_info::Channel GetChannel() {
#if defined(GOOGLE_CHROME_BUILD)
- std::string channel = GetVersionStringModifier();
+ std::string channel = GetChannelString();
if (channel.empty()) {
return version_info::Channel::STABLE;
} else if (channel == "beta") {
« no previous file with comments | « chrome/common/channel_info_chromeos.cc ('k') | chrome/common/channel_info_posix.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698