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

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

Issue 6250176: Make RenderView not have to know about how PhishingClassifierDelegate. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: sync Created 9 years, 10 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.h
===================================================================
--- chrome/renderer/safe_browsing/phishing_classifier_delegate.h (revision 73993)
+++ chrome/renderer/safe_browsing/phishing_classifier_delegate.h (working copy)
@@ -10,20 +10,18 @@
#include "base/scoped_ptr.h"
#include "base/string16.h"
+#include "chrome/renderer/render_view_observer.h"
#include "googleurl/src/gurl.h"
+#include "ipc/ipc_platform_file.h"
-class RenderView;
-
-namespace WebKit {
-class WebFrame;
-}
-
namespace safe_browsing {
class PhishingClassifier;
class Scorer;
-class PhishingClassifierDelegate {
+class PhishingClassifierDelegate : public RenderViewObserver {
public:
+ static void SetPhishingModel(IPC::PlatformFileForTransit model_file);
+
// The RenderView owns us. This object takes ownership of the classifier.
// Note that if classifier is null, a default instance of PhishingClassifier
// will be used.
@@ -35,18 +33,11 @@
// The scorer is passed on to the classifier.
void SetPhishingScorer(const safe_browsing::Scorer* scorer);
- // Called by the RenderView when a page has started loading in the given
- // WebFrame. Typically, this will cause any pending classification to be
- // cancelled. However, if the load is for the main frame, and the toplevel
- // URL has not changed, we continue running the current classification.
- void CommittedLoadInFrame(WebKit::WebFrame* frame);
+ // RenderViewObserver implementation, public for testing.
+ virtual void PageCaptured(const string16& page_text);
+ virtual void DidCommitProvisionalLoad(WebKit::WebFrame* frame,
+ bool is_new_navigation);
- // Called by the RenderView once a page has finished loading. Determines
- // whether a new toplevel load has taken place, and if so, begins
- // classification. May modify page_text. Note that it is an error to
- // call OnNavigate if there is a pending classification.
- void FinishedLoad(string16* page_text);
-
// Cancels any pending classification and frees the page text. Called by
// the RenderView when the RenderView is going away.
void CancelPendingClassification();
@@ -54,15 +45,15 @@
private:
friend class PhishingClassifierDelegateTest;
+ // RenderViewObserver implementation.
+ virtual bool OnMessageReceived(const IPC::Message& message);
+
// Called when classification for the current page finishes.
void ClassificationDone(bool is_phishy, double phishy_score);
// Returns the RenderView's toplevel URL, with the ref stripped.
GURL StripToplevelUrl();
- // The RenderView that owns this object.
- RenderView* render_view_;
-
// The PhishingClassifier to use for the RenderView. This is created once
// a scorer is made available via SetPhishingScorer().
scoped_ptr<PhishingClassifier> classifier_;

Powered by Google App Engine
This is Rietveld 408576698