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

Unified Diff: chrome/install_static/install_details.cc

Issue 2601443002: Remove multi-install from install_static. (Closed)
Patch Set: rebase onto position 442831 Created 3 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 | « chrome/install_static/install_details.h ('k') | chrome/install_static/install_details_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/install_static/install_details.cc
diff --git a/chrome/install_static/install_details.cc b/chrome/install_static/install_details.cc
index c4d96a289a58b09c7a3817848e7346e7da4310e4..b0fda62fb9a5a397271e31f7510a67e93ba75d0a 100644
--- a/chrome/install_static/install_details.cc
+++ b/chrome/install_static/install_details.cc
@@ -26,16 +26,12 @@ InstallDetails* g_module_details = nullptr;
} // namespace
-std::wstring InstallDetails::GetClientStateKeyPath(bool binaries) const {
- return binaries && multi_install()
- ? GetBinariesClientStateKeyPath()
- : install_static::GetClientStateKeyPath(app_guid());
+std::wstring InstallDetails::GetClientStateKeyPath() const {
+ return install_static::GetClientStateKeyPath(app_guid());
}
-std::wstring InstallDetails::GetClientStateMediumKeyPath(bool binaries) const {
- return binaries && multi_install()
- ? GetBinariesClientStateMediumKeyPath()
- : install_static::GetClientStateMediumKeyPath(app_guid());
+std::wstring InstallDetails::GetClientStateMediumKeyPath() const {
+ return install_static::GetClientStateMediumKeyPath(app_guid());
}
bool InstallDetails::VersionMismatch() const {
« no previous file with comments | « chrome/install_static/install_details.h ('k') | chrome/install_static/install_details_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698