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

Unified Diff: chrome/app/main_dll_loader_win.cc

Issue 2619323003: Remove uses of BrowserDistribution::CHROME_BINARIES in installer_util. (Closed)
Patch Set: sync to position 442533 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 | « no previous file | chrome/browser/google/did_run_updater_win.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/app/main_dll_loader_win.cc
diff --git a/chrome/app/main_dll_loader_win.cc b/chrome/app/main_dll_loader_win.cc
index eac279157ca3419af988878df805a160d6447799..328554fdcb60282db1c5dabee9c89439f01907cd 100644
--- a/chrome/app/main_dll_loader_win.cc
+++ b/chrome/app/main_dll_loader_win.cc
@@ -62,13 +62,11 @@ HMODULE LoadModuleWithDirectory(const base::FilePath& module) {
}
void RecordDidRun(const base::FilePath& dll_path) {
- bool system_level = !InstallUtil::IsPerUserInstall(dll_path);
- GoogleUpdateSettings::UpdateDidRunState(true, system_level);
+ GoogleUpdateSettings::UpdateDidRunState(true);
}
void ClearDidRun(const base::FilePath& dll_path) {
- bool system_level = !InstallUtil::IsPerUserInstall(dll_path);
- GoogleUpdateSettings::UpdateDidRunState(false, system_level);
+ GoogleUpdateSettings::UpdateDidRunState(false);
}
typedef int (*InitMetro)();
« no previous file with comments | « no previous file | chrome/browser/google/did_run_updater_win.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698