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

Unified Diff: chrome/browser/safe_browsing/client_side_detection_service.cc

Issue 7080034: Currently, there is a bug in the way we show the csd phishing interstitial. (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: Fix tests and add some logging. Created 9 years, 7 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
Index: chrome/browser/safe_browsing/client_side_detection_service.cc
diff --git a/chrome/browser/safe_browsing/client_side_detection_service.cc b/chrome/browser/safe_browsing/client_side_detection_service.cc
index 70ec7bfef0511535a7227592da63ce878d4d0170..e3f412f1ac23c53aeac66886e8a65a5ce9962fbb 100644
--- a/chrome/browser/safe_browsing/client_side_detection_service.cc
+++ b/chrome/browser/safe_browsing/client_side_detection_service.cc
@@ -188,6 +188,7 @@ void ClientSideDetectionService::SendModelToProcess(
::DuplicateHandle(::GetCurrentProcess(), model_file_, process->GetHandle(),
&file, 0, false, DUPLICATE_SAME_ACCESS);
#endif
+ VLOG(2) << "Sending phishing model to renderer";
process->Send(new SafeBrowsingMsg_SetPhishingModel(file));
}

Powered by Google App Engine
This is Rietveld 408576698