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

Unified Diff: content/public/test/test_navigation_observer.cc

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: content/public/test/test_navigation_observer.cc
diff --git a/content/public/test/test_navigation_observer.cc b/content/public/test/test_navigation_observer.cc
index b82bda9a8c34a4be195118aafa3e4e0452918bf9..7c2d0281a59b552e57522f317a001b445940ca53 100644
--- a/content/public/test/test_navigation_observer.cc
+++ b/content/public/test/test_navigation_observer.cc
@@ -38,11 +38,11 @@ class TestNavigationObserver::TestWebContentsObserver
parent_->OnWebContentsDestroyed(this, web_contents());
}
- void DidStartLoading(RenderViewHost* render_view_host) override {
+ void DidStartLoading() override {
parent_->OnDidStartLoading(web_contents());
}
- void DidStopLoading(RenderViewHost* render_view_host) override {
+ void DidStopLoading() override {
parent_->OnDidStopLoading(web_contents());
}

Powered by Google App Engine
This is Rietveld 408576698