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

Unified Diff: chrome/renderer/safe_browsing/phishing_classifier_delegate.cc

Issue 8116009: Move RenderProcessObserver and RenderViewVisitor to content\public\renderer and put them in the c... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 years, 2 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/renderer/safe_browsing/phishing_classifier_delegate.cc
===================================================================
--- chrome/renderer/safe_browsing/phishing_classifier_delegate.cc (revision 103758)
+++ chrome/renderer/safe_browsing/phishing_classifier_delegate.cc (working copy)
@@ -201,7 +201,7 @@
<< " score = " << verdict.client_score();
if (verdict.client_score() != PhishingClassifier::kInvalidScore) {
DCHECK_EQ(last_url_sent_to_classifier_.spec(), verdict.url());
- Send(new SafeBrowsingHostMsg_PhishingDetectionDone(
+ RenderThread::current()->Send(new SafeBrowsingHostMsg_PhishingDetectionDone(
routing_id(), verdict.SerializeAsString()));
}
}

Powered by Google App Engine
This is Rietveld 408576698