Chromium Code Reviews| Index: chrome/install_static/install_util.h |
| diff --git a/chrome/install_static/install_util.h b/chrome/install_static/install_util.h |
| index d411702f6ada0350e2b413cf453f4006189a2500..07a1ae0b04adfabbafc073ff276a80ffb89ca92c 100644 |
| --- a/chrome/install_static/install_util.h |
| +++ b/chrome/install_static/install_util.h |
| @@ -53,9 +53,6 @@ template <typename T> inline void IgnoreUnused(T) {} |
| // Returns true if Chrome is running at system level. |
| bool IsSystemInstall(); |
| -// Returns true if current installation of Chrome is a multi-install. |
| -bool IsMultiInstall(); |
| - |
| // Returns true if usage stats collecting is enabled for this user for the |
| // current executable. |
| bool GetCollectStatsConsent(); |
| @@ -125,12 +122,10 @@ void GetExecutableVersionDetails(const std::wstring& exe_path, |
| std::wstring* channel_name); |
| // Gets the channel name for the current Chrome process. |
| -// If |add_modifier| is true the channel name is returned with the modifier |
| -// prepended to it. Currently this is only done for multi installs, i.e (-m) |
| -// is the only modifier supported. |
| // TODO(ananta) |
| // http://crbug.com/604923 |
| // Unify this with the Browser Distribution code. |
| +// TODO(grt): Remove |add_modifier|. |
|
huangs
2016/12/27 20:04:22
FYI Chromium code search shows that GetChromeChann
grt (UTC plus 2)
2017/01/02 12:58:45
TODO->Done!
|
| std::wstring GetChromeChannelName(bool add_modifier); |
| // Returns the registry path where the browser crash dumps metrics need to be |
| @@ -184,9 +179,7 @@ bool RecursiveDirectoryCreate(const std::wstring& full_path); |
| // Returns the unadorned channel name based on the channel strategy for the |
| // install mode. |
| -std::wstring DetermineChannel(const InstallConstants& mode, |
| - bool system_level, |
| - bool multi_install); |
| +std::wstring DetermineChannel(const InstallConstants& mode, bool system_level); |
| // Caches the |ProcessType| of the current process. |
| extern ProcessType g_process_type; |