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

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

Issue 63273002: Rename WebKit namespace to blink (part 4) (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 1 month 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.cc
diff --git a/chrome/renderer/safe_browsing/phishing_classifier.cc b/chrome/renderer/safe_browsing/phishing_classifier.cc
index a3032843a97609ba3435471fe3240075b100e035..8d4fa92dbd0bb7444dce6b43f3c39ac59ebb9568 100644
--- a/chrome/renderer/safe_browsing/phishing_classifier.cc
+++ b/chrome/renderer/safe_browsing/phishing_classifier.cc
@@ -103,13 +103,13 @@ void PhishingClassifier::BeginClassification(
}
void PhishingClassifier::BeginFeatureExtraction() {
- WebKit::WebView* web_view = render_view_->GetWebView();
+ blink::WebView* web_view = render_view_->GetWebView();
if (!web_view) {
RunFailureCallback();
return;
}
- WebKit::WebFrame* frame = web_view->mainFrame();
+ blink::WebFrame* frame = web_view->mainFrame();
if (!frame) {
RunFailureCallback();
return;
@@ -123,7 +123,7 @@ void PhishingClassifier::BeginFeatureExtraction() {
return;
}
- WebKit::WebDataSource* ds = frame->dataSource();
+ blink::WebDataSource* ds = frame->dataSource();
if (!ds || !EqualsASCII(ds->request().httpMethod(), "GET")) {
RunFailureCallback();
return;
@@ -169,12 +169,12 @@ void PhishingClassifier::DOMExtractionFinished(bool success) {
void PhishingClassifier::TermExtractionFinished(bool success) {
if (success) {
- WebKit::WebView* web_view = render_view_->GetWebView();
+ blink::WebView* web_view = render_view_->GetWebView();
if (!web_view) {
RunFailureCallback();
return;
}
- WebKit::WebFrame* main_frame = web_view->mainFrame();
+ blink::WebFrame* main_frame = web_view->mainFrame();
if (!main_frame) {
RunFailureCallback();
return;
« no previous file with comments | « chrome/renderer/safe_browsing/malware_dom_details.cc ('k') | chrome/renderer/safe_browsing/phishing_classifier_delegate.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698