| Index: content/browser/web_contents/web_contents_impl.cc
|
| diff --git a/content/browser/web_contents/web_contents_impl.cc b/content/browser/web_contents/web_contents_impl.cc
|
| index 551e16a75907d0046503ce4b13c8a5179c2c32d7..d91f20e3e7315f180901d898ff610e73001e66ad 100644
|
| --- a/content/browser/web_contents/web_contents_impl.cc
|
| +++ b/content/browser/web_contents/web_contents_impl.cc
|
| @@ -3825,7 +3825,7 @@ bool WebContentsImpl::AddMessageToConsole(int32 level,
|
| source_id);
|
| }
|
|
|
| -WebPreferences WebContentsImpl::GetWebkitPrefs() {
|
| +WebPreferences WebContentsImpl::ComputeWebkitPrefs() {
|
| // We want to base the page config off of the actual URL, rather than the
|
| // virtual URL.
|
| // TODO(nasko): Investigate how to remove the GetActiveEntry usage here,
|
| @@ -3833,7 +3833,7 @@ WebPreferences WebContentsImpl::GetWebkitPrefs() {
|
| GURL url = controller_.GetActiveEntry()
|
| ? controller_.GetActiveEntry()->GetURL() : GURL::EmptyGURL();
|
|
|
| - return GetRenderManager()->current_host()->GetWebkitPrefs(url);
|
| + return GetRenderManager()->current_host()->ComputeWebkitPrefs(url);
|
| }
|
|
|
| int WebContentsImpl::CreateSwappedOutRenderView(
|
|
|