| Index: content/browser/tab_contents/render_view_host_manager.h
 | 
| diff --git a/content/browser/tab_contents/render_view_host_manager.h b/content/browser/tab_contents/render_view_host_manager.h
 | 
| index 01ddbc8c6efc9e4ee16dd8de75ac60a555868ceb..3679ed5e4e74f5ead88d954729fbe2a62b01eb3c 100644
 | 
| --- a/content/browser/tab_contents/render_view_host_manager.h
 | 
| +++ b/content/browser/tab_contents/render_view_host_manager.h
 | 
| @@ -11,6 +11,7 @@
 | 
|  #include "base/memory/scoped_ptr.h"
 | 
|  #include "content/browser/renderer_host/render_view_host_delegate.h"
 | 
|  #include "content/common/notification_registrar.h"
 | 
| +#include "content/browser/site_instance.h"
 | 
|  
 | 
|  class WebUI;
 | 
|  class InterstitialPage;
 | 
| @@ -19,7 +20,6 @@ class NavigationEntry;
 | 
|  class Profile;
 | 
|  class RenderWidgetHostView;
 | 
|  class RenderViewHost;
 | 
| -class SiteInstance;
 | 
|  
 | 
|  // Manages RenderViewHosts for a TabContents. Normally there is only one and
 | 
|  // it is easy to do. But we can also have transitions of processes (and hence
 | 
| @@ -179,6 +179,10 @@ class RenderViewHostManager
 | 
|    // deleted.
 | 
|    void SwapInRenderViewHost(RenderViewHost* rvh);
 | 
|  
 | 
| +  // Returns whether the given RenderViewHost is on the list of swapped out
 | 
| +  // RenderViewHosts.
 | 
| +  bool IsSwappedOut(RenderViewHost* rvh);
 | 
| +
 | 
|   private:
 | 
|    friend class TestTabContents;
 | 
|    friend class RenderViewHostManagerTest;
 | 
| @@ -254,6 +258,10 @@ class RenderViewHostManager
 | 
|    RenderViewHost* pending_render_view_host_;
 | 
|    scoped_ptr<WebUI> pending_web_ui_;
 | 
|  
 | 
| +  // A map of site instance ID to swapped out RenderViewHosts.
 | 
| +  typedef base::hash_map<int32, RenderViewHost*> RenderViewHostMap;
 | 
| +  RenderViewHostMap swapped_out_hosts_;
 | 
| +
 | 
|    // The intersitial page currently shown if any, not own by this class
 | 
|    // (the InterstitialPage is self-owned, it deletes itself when hidden).
 | 
|    InterstitialPage* interstitial_page_;
 | 
| 
 |