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

Unified Diff: chrome/renderer/safe_browsing/phishing_classifier_delegate_browsertest.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_delegate_browsertest.cc
diff --git a/chrome/renderer/safe_browsing/phishing_classifier_delegate_browsertest.cc b/chrome/renderer/safe_browsing/phishing_classifier_delegate_browsertest.cc
index 927e8efe8c40e464d6c092ebfa3ba9055f0a762e..b1bf368fc462ed597044b76c6ee908410b182c16 100644
--- a/chrome/renderer/safe_browsing/phishing_classifier_delegate_browsertest.cc
+++ b/chrome/renderer/safe_browsing/phishing_classifier_delegate_browsertest.cc
@@ -142,7 +142,7 @@ TEST_F(PhishingClassifierDelegateTest, Navigation) {
// Currently, we do not start a new classification after subframe loads.
EXPECT_CALL(*classifier, CancelPendingClassification());
GetMainFrame()->firstChild()->loadRequest(
- WebKit::WebURLRequest(GURL("http://sub2.com/")));
+ blink::WebURLRequest(GURL("http://sub2.com/")));
message_loop_.Run();
Mock::VerifyAndClearExpectations(classifier);
OnStartPhishingDetection(delegate, GURL("http://host.com/"));
@@ -180,7 +180,7 @@ TEST_F(PhishingClassifierDelegateTest, Navigation) {
// Note: in practice, the browser will not send a StartPhishingDetection IPC
// in this case. However, we want to make sure that the delegate behaves
// correctly regardless.
- WebKit::WebHistoryItem forward_item = GetMainFrame()->currentHistoryItem();
+ blink::WebHistoryItem forward_item = GetMainFrame()->currentHistoryItem();
EXPECT_CALL(*classifier, CancelPendingClassification());
GoBack();
Mock::VerifyAndClearExpectations(classifier);

Powered by Google App Engine
This is Rietveld 408576698