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/frame_host/render_frame_host_manager.h" | 5 #include "content/browser/frame_host/render_frame_host_manager.h" |
6 | 6 |
7 #include <utility> | 7 #include <utility> |
8 | 8 |
9 #include "base/command_line.h" | 9 #include "base/command_line.h" |
10 #include "base/debug/trace_event.h" | |
11 #include "base/logging.h" | 10 #include "base/logging.h" |
12 #include "base/stl_util.h" | 11 #include "base/stl_util.h" |
| 12 #include "base/trace_event/trace_event.h" |
13 #include "content/browser/child_process_security_policy_impl.h" | 13 #include "content/browser/child_process_security_policy_impl.h" |
14 #include "content/browser/devtools/render_view_devtools_agent_host.h" | 14 #include "content/browser/devtools/render_view_devtools_agent_host.h" |
15 #include "content/browser/frame_host/cross_site_transferring_request.h" | 15 #include "content/browser/frame_host/cross_site_transferring_request.h" |
16 #include "content/browser/frame_host/debug_urls.h" | 16 #include "content/browser/frame_host/debug_urls.h" |
17 #include "content/browser/frame_host/interstitial_page_impl.h" | 17 #include "content/browser/frame_host/interstitial_page_impl.h" |
18 #include "content/browser/frame_host/navigation_controller_impl.h" | 18 #include "content/browser/frame_host/navigation_controller_impl.h" |
19 #include "content/browser/frame_host/navigation_entry_impl.h" | 19 #include "content/browser/frame_host/navigation_entry_impl.h" |
20 #include "content/browser/frame_host/navigation_request.h" | 20 #include "content/browser/frame_host/navigation_request.h" |
21 #include "content/browser/frame_host/navigator.h" | 21 #include "content/browser/frame_host/navigator.h" |
22 #include "content/browser/frame_host/render_frame_host_factory.h" | 22 #include "content/browser/frame_host/render_frame_host_factory.h" |
(...skipping 1847 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1870 void RenderFrameHostManager::DeleteRenderFrameProxyHost( | 1870 void RenderFrameHostManager::DeleteRenderFrameProxyHost( |
1871 SiteInstance* instance) { | 1871 SiteInstance* instance) { |
1872 RenderFrameProxyHostMap::iterator iter = proxy_hosts_.find(instance->GetId()); | 1872 RenderFrameProxyHostMap::iterator iter = proxy_hosts_.find(instance->GetId()); |
1873 if (iter != proxy_hosts_.end()) { | 1873 if (iter != proxy_hosts_.end()) { |
1874 delete iter->second; | 1874 delete iter->second; |
1875 proxy_hosts_.erase(iter); | 1875 proxy_hosts_.erase(iter); |
1876 } | 1876 } |
1877 } | 1877 } |
1878 | 1878 |
1879 } // namespace content | 1879 } // namespace content |
OLD | NEW |