| Index: chrome/browser/visitedlink_unittest.cc
|
| diff --git a/chrome/browser/visitedlink_unittest.cc b/chrome/browser/visitedlink_unittest.cc
|
| index 3d79355cfe599c58c3a71cfb149ad143cf9a6d3f..64d30bb6a10273f42057adf7d0c6e9da850f23ca 100644
|
| --- a/chrome/browser/visitedlink_unittest.cc
|
| +++ b/chrome/browser/visitedlink_unittest.cc
|
| @@ -676,7 +676,7 @@ TEST_F(VisitedLinkEventsTest, Coalescense) {
|
|
|
| TEST_F(VisitedLinkRelayTest, Basics) {
|
| VisitedLinkMaster* master = profile_->GetVisitedLinkMaster();
|
| - rvh()->CreateRenderView(profile_->GetRequestContext());
|
| + rvh()->CreateRenderView(profile_->GetRequestContext(), string16());
|
|
|
| // Add a few URLs.
|
| master->AddURL(GURL("http://acidtests.org/"));
|
| @@ -700,7 +700,7 @@ TEST_F(VisitedLinkRelayTest, Basics) {
|
|
|
| TEST_F(VisitedLinkRelayTest, TabVisibility) {
|
| VisitedLinkMaster* master = profile_->GetVisitedLinkMaster();
|
| - rvh()->CreateRenderView(profile_->GetRequestContext());
|
| + rvh()->CreateRenderView(profile_->GetRequestContext(), string16());
|
|
|
| // Simulate tab becoming inactive.
|
| rvh()->WasHidden();
|
| @@ -763,7 +763,7 @@ TEST_F(VisitedLinkRelayTest, WebViewReadiness) {
|
| EXPECT_EQ(0, profile()->add_event_count());
|
| EXPECT_EQ(0, profile()->reset_event_count());
|
|
|
| - rvh()->CreateRenderView(profile_->GetRequestContext());
|
| + rvh()->CreateRenderView(profile_->GetRequestContext(), string16());
|
|
|
| // We should now have just a reset event: adds are eaten up by a reset
|
| // that followed.
|
|
|