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

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: Address Brian's comments. 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 e9b6d16d5c34b7cc4995cf2a16426d8196f327fa..c3cdc13b72592383641b89844fbaecf9a34f87d3 100644
--- a/chrome/browser/safe_browsing/client_side_detection_service.cc
+++ b/chrome/browser/safe_browsing/client_side_detection_service.cc
@@ -192,6 +192,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