OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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/tab_contents/render_view_host_manager.h" | 5 #include "content/browser/web_contents/render_view_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/logging.h" | 10 #include "base/logging.h" |
11 #include "content/browser/debugger/devtools_manager_impl.h" | 11 #include "content/browser/debugger/devtools_manager_impl.h" |
12 #include "content/browser/renderer_host/render_view_host_factory.h" | 12 #include "content/browser/renderer_host/render_view_host_factory.h" |
13 #include "content/browser/renderer_host/render_view_host_impl.h" | 13 #include "content/browser/renderer_host/render_view_host_impl.h" |
14 #include "content/browser/site_instance_impl.h" | 14 #include "content/browser/site_instance_impl.h" |
15 #include "content/browser/web_contents/navigation_controller_impl.h" | 15 #include "content/browser/web_contents/navigation_controller_impl.h" |
(...skipping 814 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
830 } | 830 } |
831 } | 831 } |
832 | 832 |
833 bool RenderViewHostManager::IsSwappedOut(RenderViewHost* rvh) { | 833 bool RenderViewHostManager::IsSwappedOut(RenderViewHost* rvh) { |
834 if (!rvh->GetSiteInstance()) | 834 if (!rvh->GetSiteInstance()) |
835 return false; | 835 return false; |
836 | 836 |
837 return swapped_out_hosts_.find(rvh->GetSiteInstance()->GetId()) != | 837 return swapped_out_hosts_.find(rvh->GetSiteInstance()->GetId()) != |
838 swapped_out_hosts_.end(); | 838 swapped_out_hosts_.end(); |
839 } | 839 } |
OLD | NEW |