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)(); |