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

Unified Diff: chrome/browser/chrome_elf_init_win.cc

Issue 346763003: Adding blacklisted dlls to safe browsing incident reports. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@updatedWard2
Patch Set: Created 6 years, 6 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/safe_browsing/environment_data_collection_win.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/chrome_elf_init_win.cc
diff --git a/chrome/browser/chrome_elf_init_win.cc b/chrome/browser/chrome_elf_init_win.cc
index e09d2c9c3928a28657f54831bcb777657fa13c1d..7e4c4f643bc34c7c03179b4c19d0f28b116861cf 100644
--- a/chrome/browser/chrome_elf_init_win.cc
+++ b/chrome/browser/chrome_elf_init_win.cc
@@ -113,6 +113,11 @@ void AddFinchBlacklistToRegistry() {
if (!finch_blacklist_registry_key.Valid())
return;
+ // Delete and recreate the key to clear the registry.
+ finch_blacklist_registry_key.DeleteKey(L"");
+ finch_blacklist_registry_key.Create(
+ HKEY_CURRENT_USER, blacklist::kRegistryFinchListPath, KEY_SET_VALUE);
mattm 2014/06/19 22:46:31 what happens with this registry entry when multipl
grt (UTC plus 2) 2014/06/20 00:06:27 this is a good point. in time, we may have canary,
krstnmnlsn 2014/06/20 18:02:58 To split up the registry values by channel running
+
std::map<std::string, std::string> params;
chrome_variations::GetVariationParams(kBrowserBlacklistTrialName, &params);
« no previous file with comments | « no previous file | chrome/browser/safe_browsing/environment_data_collection_win.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698