Index: content/browser/browser_url_handler_unittest.cc |
diff --git a/content/browser/browser_url_handler_unittest.cc b/content/browser/browser_url_handler_unittest.cc |
index fec59e537bc9898fa18517448be87765f3e4ca9a..91685225599eb002f07386433cf4cfcb13cf258a 100644 |
--- a/content/browser/browser_url_handler_unittest.cc |
+++ b/content/browser/browser_url_handler_unittest.cc |
@@ -11,7 +11,7 @@ class BrowserURLHandlerTest : public testing::Test { |
}; |
// Test URL rewriter that rewrites all "foo://" URLs to "bar://bar". |
-static bool FooRewriter(GURL* url, Profile* profile) { |
+static bool FooRewriter(GURL* url, content::BrowserContext* browser_context) { |
if (url->scheme() == "foo") { |
*url = GURL("bar://bar"); |
return true; |
@@ -20,7 +20,7 @@ static bool FooRewriter(GURL* url, Profile* profile) { |
} |
// Test URL rewriter that rewrites all "bar://" URLs to "foo://foo". |
-static bool BarRewriter(GURL* url, Profile* profile) { |
+static bool BarRewriter(GURL* url, content::BrowserContext* browser_context) { |
if (url->scheme() == "bar") { |
*url = GURL("foo://foo"); |
return true; |