| OLD | NEW |
| 1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2009 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 #ifndef CHROME_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_MANAGER_H_ | 5 #ifndef CHROME_BROWSER_TAB_CONTENTS_RENDER_VIEW_HOST_MANAGER_H_ |
| 6 #define CHROME_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_MANAGER_H_ | 6 #define CHROME_BROWSER_TAB_CONTENTS_RENDER_VIEW_HOST_MANAGER_H_ |
| 7 | 7 |
| 8 #include "base/basictypes.h" | 8 #include "base/basictypes.h" |
| 9 #include "base/scoped_ptr.h" | 9 #include "base/scoped_ptr.h" |
| 10 #include "chrome/browser/renderer_host/render_view_host.h" | 10 #include "chrome/browser/renderer_host/render_view_host.h" |
| 11 #include "chrome/common/notification_registrar.h" | 11 #include "chrome/common/notification_registrar.h" |
| 12 #include "chrome/common/notification_observer.h" | 12 #include "chrome/common/notification_observer.h" |
| 13 | 13 |
| 14 class DOMUI; | 14 class DOMUI; |
| 15 class InterstitialPage; | 15 class InterstitialPage; |
| 16 class NavigationController; | 16 class NavigationController; |
| (...skipping 240 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 257 DISALLOW_COPY_AND_ASSIGN(RenderViewHostManager); | 257 DISALLOW_COPY_AND_ASSIGN(RenderViewHostManager); |
| 258 }; | 258 }; |
| 259 | 259 |
| 260 // The "details" for a NOTIFY_RENDER_VIEW_HOST_CHANGED notification. The old | 260 // The "details" for a NOTIFY_RENDER_VIEW_HOST_CHANGED notification. The old |
| 261 // host can be NULL when the first RenderViewHost is set. | 261 // host can be NULL when the first RenderViewHost is set. |
| 262 struct RenderViewHostSwitchedDetails { | 262 struct RenderViewHostSwitchedDetails { |
| 263 RenderViewHost* old_host; | 263 RenderViewHost* old_host; |
| 264 RenderViewHost* new_host; | 264 RenderViewHost* new_host; |
| 265 }; | 265 }; |
| 266 | 266 |
| 267 #endif // CHROME_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_MANAGER_H_ | 267 #endif // CHROME_BROWSER_TAB_CONTENTS_RENDER_VIEW_HOST_MANAGER_H_ |
| OLD | NEW |