| Index: content/browser/mock_content_browser_client.cc
|
| diff --git a/content/browser/mock_content_browser_client.cc b/content/browser/mock_content_browser_client.cc
|
| index 298fc592ac90c21dc0240bff31bbd78a86e80859..fa02551700280b479115c89af6c79fb759a3f507 100644
|
| --- a/content/browser/mock_content_browser_client.cc
|
| +++ b/content/browser/mock_content_browser_client.cc
|
| @@ -38,7 +38,7 @@ WebUIFactory* MockContentBrowserClient::GetWebUIFactory() {
|
| return EmptyWebUIFactory::Get();
|
| }
|
|
|
| -GURL MockContentBrowserClient::GetEffectiveURL(Profile* profile,
|
| +GURL MockContentBrowserClient::GetEffectiveURL(content::BrowserContext* context,
|
| const GURL& url) {
|
| return GURL();
|
| }
|
| @@ -192,8 +192,9 @@ bool MockContentBrowserClient::IsFastShutdownPossible() {
|
| return true;
|
| }
|
|
|
| -WebPreferences MockContentBrowserClient::GetWebkitPrefs(Profile* profile,
|
| - bool is_web_ui) {
|
| +WebPreferences MockContentBrowserClient::GetWebkitPrefs(
|
| + content::BrowserContext* context,
|
| + bool is_web_ui) {
|
| return WebPreferences();
|
| }
|
|
|
|
|