| 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/tab_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.h" | 12 #include "content/browser/renderer_host/render_view_host.h" |
| 13 #include "content/browser/renderer_host/render_view_host_factory.h" | 13 #include "content/browser/renderer_host/render_view_host_factory.h" |
| 14 #include "content/browser/renderer_host/render_widget_host_view.h" | |
| 15 #include "content/browser/site_instance_impl.h" | 14 #include "content/browser/site_instance_impl.h" |
| 16 #include "content/browser/tab_contents/navigation_controller_impl.h" | 15 #include "content/browser/tab_contents/navigation_controller_impl.h" |
| 17 #include "content/browser/tab_contents/navigation_entry_impl.h" | 16 #include "content/browser/tab_contents/navigation_entry_impl.h" |
| 18 #include "content/browser/webui/web_ui_impl.h" | 17 #include "content/browser/webui/web_ui_impl.h" |
| 19 #include "content/common/view_messages.h" | 18 #include "content/common/view_messages.h" |
| 19 #include "content/port/browser/render_widget_host_view_port.h" |
| 20 #include "content/public/browser/content_browser_client.h" | 20 #include "content/public/browser/content_browser_client.h" |
| 21 #include "content/public/browser/notification_service.h" | 21 #include "content/public/browser/notification_service.h" |
| 22 #include "content/public/browser/notification_types.h" | 22 #include "content/public/browser/notification_types.h" |
| 23 #include "content/public/browser/render_view_host_delegate.h" | 23 #include "content/public/browser/render_view_host_delegate.h" |
| 24 #include "content/public/browser/web_contents_view.h" | 24 #include "content/public/browser/web_contents_view.h" |
| 25 #include "content/public/browser/web_ui_controller.h" | 25 #include "content/public/browser/web_ui_controller.h" |
| 26 #include "content/public/browser/web_ui_controller_factory.h" | 26 #include "content/public/browser/web_ui_controller_factory.h" |
| 27 #include "content/public/common/content_switches.h" | 27 #include "content/public/common/content_switches.h" |
| 28 #include "content/public/common/url_constants.h" | 28 #include "content/public/common/url_constants.h" |
| 29 | 29 |
| 30 using content::NavigationController; | 30 using content::NavigationController; |
| 31 using content::NavigationEntry; | 31 using content::NavigationEntry; |
| 32 using content::NavigationEntryImpl; | 32 using content::NavigationEntryImpl; |
| 33 using content::RenderWidgetHostView; |
| 33 using content::RenderWidgetHostViewPort; | 34 using content::RenderWidgetHostViewPort; |
| 34 using content::SiteInstance; | 35 using content::SiteInstance; |
| 35 using content::WebUIControllerFactory; | 36 using content::WebUIControllerFactory; |
| 36 | 37 |
| 37 RenderViewHostManager::RenderViewHostManager( | 38 RenderViewHostManager::RenderViewHostManager( |
| 38 content::RenderViewHostDelegate* render_view_delegate, | 39 content::RenderViewHostDelegate* render_view_delegate, |
| 39 Delegate* delegate) | 40 Delegate* delegate) |
| 40 : delegate_(delegate), | 41 : delegate_(delegate), |
| 41 cross_navigation_pending_(false), | 42 cross_navigation_pending_(false), |
| 42 render_view_delegate_(render_view_delegate), | 43 render_view_delegate_(render_view_delegate), |
| (...skipping 765 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 808 } | 809 } |
| 809 } | 810 } |
| 810 | 811 |
| 811 bool RenderViewHostManager::IsSwappedOut(RenderViewHost* rvh) { | 812 bool RenderViewHostManager::IsSwappedOut(RenderViewHost* rvh) { |
| 812 if (!rvh->site_instance()) | 813 if (!rvh->site_instance()) |
| 813 return false; | 814 return false; |
| 814 | 815 |
| 815 return swapped_out_hosts_.find(rvh->site_instance()->GetId()) != | 816 return swapped_out_hosts_.find(rvh->site_instance()->GetId()) != |
| 816 swapped_out_hosts_.end(); | 817 swapped_out_hosts_.end(); |
| 817 } | 818 } |
| OLD | NEW |