| Index: extensions/browser/guest_view/guest_view_base.h
|
| diff --git a/extensions/browser/guest_view/guest_view_base.h b/extensions/browser/guest_view/guest_view_base.h
|
| index 549fa1ea61c7145459217d4e2c894e976e7c2cc6..bf30654c962592dbe707d88b4cddbf20a6bdb000 100644
|
| --- a/extensions/browser/guest_view/guest_view_base.h
|
| +++ b/extensions/browser/guest_view/guest_view_base.h
|
| @@ -103,7 +103,7 @@ class GuestViewBase : public content::BrowserPluginGuestDelegate,
|
|
|
| // This method is called when the initial set of frames within the page have
|
| // completed loading.
|
| - virtual void DidStopLoading() {}
|
| + virtual void GuestViewDidStopLoading() {}
|
|
|
| // This method is called before the embedder is destroyed.
|
| // |owner_web_contents_| should still be valid during this call. This
|
| @@ -323,7 +323,7 @@ class GuestViewBase : public content::BrowserPluginGuestDelegate,
|
| double PhysicalPixelsToLogicalPixels(int physical_pixels);
|
|
|
| // WebContentsObserver implementation.
|
| - void DidStopLoading(content::RenderViewHost* render_view_host) final;
|
| + void DidStopLoading() final;
|
| void RenderViewReady() final;
|
| void WebContentsDestroyed() final;
|
|
|
|
|