diff options
Diffstat (limited to 'content/browser/renderer_host/render_view_host.cc')
-rw-r--r-- | content/browser/renderer_host/render_view_host.cc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/content/browser/renderer_host/render_view_host.cc b/content/browser/renderer_host/render_view_host.cc index 9e6086d..4b74771 100644 --- a/content/browser/renderer_host/render_view_host.cc +++ b/content/browser/renderer_host/render_view_host.cc @@ -59,6 +59,7 @@ #include "webkit/glue/webdropdata.h" using base::TimeDelta; +using content::BrowserContext; using content::BrowserMessageFilter; using content::BrowserThread; using content::DomOperationNotificationDetails; @@ -136,7 +137,7 @@ RenderViewHost::RenderViewHost(SiteInstance* instance, render_view_termination_status_(base::TERMINATION_STATUS_STILL_RUNNING) { if (!session_storage_namespace_) { session_storage_namespace_ = new SessionStorageNamespace( - process()->GetBrowserContext()->GetWebKitContext()); + BrowserContext::GetWebKitContext(process()->GetBrowserContext())); } DCHECK(instance_); |