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

Unified Diff: content/browser/frame_host/navigation_entry_impl_unittest.cc

Issue 63253002: Rename WebKit namespace to blink (part 3) (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: content/browser/frame_host/navigation_entry_impl_unittest.cc
diff --git a/content/browser/frame_host/navigation_entry_impl_unittest.cc b/content/browser/frame_host/navigation_entry_impl_unittest.cc
index 6486fde8c8b81ab5eafe292e66b48c50b1fa3e53..cb742e497bb230e37b4303b86b6b57849937c842 100644
--- a/content/browser/frame_host/navigation_entry_impl_unittest.cc
+++ b/content/browser/frame_host/navigation_entry_impl_unittest.cc
@@ -27,7 +27,7 @@ class NavigationEntryTest : public testing::Test {
entry2_.reset(new NavigationEntryImpl(
instance_, 3,
GURL("test:url"),
- Referrer(GURL("from"), WebKit::WebReferrerPolicyDefault),
+ Referrer(GURL("from"), blink::WebReferrerPolicyDefault),
ASCIIToUTF16("title"),
PAGE_TRANSITION_TYPED,
false));
@@ -132,7 +132,7 @@ TEST_F(NavigationEntryTest, NavigationEntryAccessors) {
EXPECT_EQ(GURL(), entry1_->GetReferrer().url);
EXPECT_EQ(GURL("from"), entry2_->GetReferrer().url);
entry2_->SetReferrer(
- Referrer(GURL("from2"), WebKit::WebReferrerPolicyDefault));
+ Referrer(GURL("from2"), blink::WebReferrerPolicyDefault));
EXPECT_EQ(GURL("from2"), entry2_->GetReferrer().url);
// Title

Powered by Google App Engine
This is Rietveld 408576698