Chromium Code Reviews| 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 f7505af877b67c2644609a9ff6920d39dfba84a0..392e133a63b2c14d733a3b6352d1e77fd1f64bc6 100644 |
| --- a/content/browser/web_contents/web_contents_impl.cc |
| +++ b/content/browser/web_contents/web_contents_impl.cc |
| @@ -4149,7 +4149,7 @@ void WebContentsImpl::EnsureOpenerProxiesExist(RenderFrameHost* source_rfh) { |
| RenderFrameHostImpl* source_rfhi = |
| static_cast<RenderFrameHostImpl*>(source_rfh); |
| source_rfhi->frame_tree_node()->render_manager()->CreateOpenerProxies( |
| - GetSiteInstance()); |
| + GetSiteInstance(), nullptr); |
|
alexmos
2015/08/25 22:38:08
Using nullptr keeps today's behavior, but I'm thin
Charlie Reis
2015/08/31 20:49:43
Interesting. Is that something we could write a t
alexmos
2015/09/01 22:12:28
I wrote a test and then realized this is actually
|
| } |
| } |
| } |