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

Side by Side Diff: chrome/common/chrome_version_info_win.cc

Issue 1257633002: Componentize VersionInfo. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Convert version_info::Channel to a "class enum" 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 unified diff | Download patch
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "chrome/common/chrome_version_info.h" 5 #include "chrome/common/chrome_version_info.h"
6 6
7 #include "base/base_paths.h" 7 #include "base/base_paths.h"
8 #include "base/debug/profiler.h" 8 #include "base/debug/profiler.h"
9 #include "base/files/file_path.h" 9 #include "base/files/file_path.h"
10 #include "base/path_service.h" 10 #include "base/path_service.h"
(...skipping 25 matching lines...) Expand all
36 if (base::debug::IsBinaryInstrumented()) 36 if (base::debug::IsBinaryInstrumented())
37 channel += L" SyzyASan"; 37 channel += L" SyzyASan";
38 #endif 38 #endif
39 return base::UTF16ToASCII(channel); 39 return base::UTF16ToASCII(channel);
40 #else 40 #else
41 return std::string(); 41 return std::string();
42 #endif 42 #endif
43 } 43 }
44 44
45 // static 45 // static
46 VersionInfo::Channel VersionInfo::GetChannel() { 46 version_info::Channel VersionInfo::GetChannel() {
47 #if defined(GOOGLE_CHROME_BUILD) 47 #if defined(GOOGLE_CHROME_BUILD)
48 std::wstring channel(L"unknown"); 48 std::wstring channel(L"unknown");
49 49
50 base::FilePath module; 50 base::FilePath module;
51 if (PathService::Get(base::FILE_MODULE, &module)) { 51 if (PathService::Get(base::FILE_MODULE, &module)) {
52 bool is_system_install = !InstallUtil::IsPerUserInstall(module); 52 bool is_system_install = !InstallUtil::IsPerUserInstall(module);
53 channel = GoogleUpdateSettings::GetChromeChannel(is_system_install); 53 channel = GoogleUpdateSettings::GetChromeChannel(is_system_install);
54 } 54 }
55 55
56 if (channel.empty()) { 56 if (channel.empty()) {
57 return CHANNEL_STABLE; 57 return version_info::Channel::STABLE;
58 } else if (channel == L"beta") { 58 } else if (channel == L"beta") {
59 return CHANNEL_BETA; 59 return version_info::Channel::BETA;
60 } else if (channel == L"dev") { 60 } else if (channel == L"dev") {
61 return CHANNEL_DEV; 61 return version_info::Channel::DEV;
62 } else if (channel == L"canary") { 62 } else if (channel == L"canary") {
63 return CHANNEL_CANARY; 63 return version_info::Channel::CANARY;
64 } 64 }
65 #endif 65 #endif
66 66
67 return CHANNEL_UNKNOWN; 67 return version_info::Channel::UNKNOWN;
68 } 68 }
69 69
70 } // namespace chrome 70 } // namespace chrome
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698