Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(32)

Unified Diff: extensions/browser/guest_view/guest_view_base.h

Issue 1008913002: Remove RenderViewHost parameter from WebContentsObserver::Did{Start|Stop}Loading. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 5 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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;

Powered by Google App Engine
This is Rietveld 408576698