OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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/renderer_host/render_frame_host_impl.h" | 5 #include "content/browser/frame_host/render_frame_host_impl.h" |
6 | 6 |
7 #include "base/containers/hash_tables.h" | 7 #include "base/containers/hash_tables.h" |
8 #include "base/lazy_instance.h" | 8 #include "base/lazy_instance.h" |
9 #include "content/browser/renderer_host/frame_tree.h" | 9 #include "content/browser/frame_host/frame_tree.h" |
10 #include "content/browser/renderer_host/render_view_host_impl.h" | 10 #include "content/browser/renderer_host/render_view_host_impl.h" |
11 #include "content/common/frame_messages.h" | 11 #include "content/common/frame_messages.h" |
12 #include "content/public/browser/browser_thread.h" | 12 #include "content/public/browser/browser_thread.h" |
13 #include "content/public/browser/render_process_host.h" | 13 #include "content/public/browser/render_process_host.h" |
14 #include "url/gurl.h" | 14 #include "url/gurl.h" |
15 | 15 |
16 namespace content { | 16 namespace content { |
17 | 17 |
18 // The (process id, routing id) pair that identifies one RenderFrame. | 18 // The (process id, routing id) pair that identifies one RenderFrame. |
19 typedef std::pair<int32, int32> RenderFrameHostID; | 19 typedef std::pair<int32, int32> RenderFrameHostID; |
(...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
94 void RenderFrameHostImpl::OnDidStartProvisionalLoadForFrame( | 94 void RenderFrameHostImpl::OnDidStartProvisionalLoadForFrame( |
95 int64 frame_id, | 95 int64 frame_id, |
96 int64 parent_frame_id, | 96 int64 parent_frame_id, |
97 bool is_main_frame, | 97 bool is_main_frame, |
98 const GURL& url) { | 98 const GURL& url) { |
99 render_view_host_->OnDidStartProvisionalLoadForFrame( | 99 render_view_host_->OnDidStartProvisionalLoadForFrame( |
100 frame_id, parent_frame_id, is_main_frame, url); | 100 frame_id, parent_frame_id, is_main_frame, url); |
101 } | 101 } |
102 | 102 |
103 } // namespace content | 103 } // namespace content |
OLD | NEW |