| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "content/browser/frame_host/render_frame_proxy_host.h" | 5 #include "content/browser/frame_host/render_frame_proxy_host.h" |
| 6 | 6 |
| 7 #include <utility> | 7 #include <utility> |
| 8 | 8 |
| 9 #include "base/lazy_instance.h" | 9 #include "base/lazy_instance.h" |
| 10 #include "content/browser/bad_message.h" | 10 #include "content/browser/bad_message.h" |
| (...skipping 342 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 353 ->GetRenderFrameProxyHost(target_rfh->GetSiteInstance()); | 353 ->GetRenderFrameProxyHost(target_rfh->GetSiteInstance()); |
| 354 if (source_proxy) | 354 if (source_proxy) |
| 355 source_proxy_routing_id = source_proxy->GetRoutingID(); | 355 source_proxy_routing_id = source_proxy->GetRoutingID(); |
| 356 } | 356 } |
| 357 | 357 |
| 358 target_rfh->Send(new FrameMsg_AdvanceFocus(target_rfh->GetRoutingID(), type, | 358 target_rfh->Send(new FrameMsg_AdvanceFocus(target_rfh->GetRoutingID(), type, |
| 359 source_proxy_routing_id)); | 359 source_proxy_routing_id)); |
| 360 } | 360 } |
| 361 | 361 |
| 362 void RenderFrameProxyHost::OnFrameFocused() { | 362 void RenderFrameProxyHost::OnFrameFocused() { |
| 363 frame_tree_node_->frame_tree()->SetFocusedFrame(frame_tree_node_, | 363 frame_tree_node_->current_frame_host()->delegate()->SetFocusedFrame( |
| 364 GetSiteInstance()); | 364 frame_tree_node_, GetSiteInstance()); |
| 365 } | 365 } |
| 366 | 366 |
| 367 } // namespace content | 367 } // namespace content |
| OLD | NEW |