| Index: content/port/browser/web_contents_view_port.h
|
| diff --git a/content/port/browser/web_contents_view_port.h b/content/port/browser/web_contents_view_port.h
|
| index 631fe5767119dad64ae40b5f3a2e907057072e8a..ec8f0db7eac768919216ab7ed2b84798b866ebcb 100644
|
| --- a/content/port/browser/web_contents_view_port.h
|
| +++ b/content/port/browser/web_contents_view_port.h
|
| @@ -42,8 +42,9 @@ class CONTENT_EXPORT WebContentsViewPort : public WebContentsView {
|
| virtual void RenderViewCreated(RenderViewHost* host) = 0;
|
|
|
| // Invoked when the WebContents is notified that the RenderView has been
|
| - // swapped in.
|
| - virtual void RenderViewSwappedIn(RenderViewHost* host) = 0;
|
| + // swapped in. |old_host| is optional, and may be null.
|
| + virtual void RenderViewSwappedIn(RenderViewHost* new_host,
|
| + RenderViewHost* old_host) = 0;
|
|
|
| #if defined(OS_MACOSX)
|
| // If we close the tab while a UI control is in an event-tracking
|
|
|