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

Unified Diff: content/shell/renderer/test_runner/WebTestProxy.h

Issue 180113003: Prepare for per frame did{Start,Stop}Loading calls (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 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
« no previous file with comments | « content/renderer/render_view_impl.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/shell/renderer/test_runner/WebTestProxy.h
diff --git a/content/shell/renderer/test_runner/WebTestProxy.h b/content/shell/renderer/test_runner/WebTestProxy.h
index 0aa4f7fca167554d1a7162aada887495cfdb77a2..ea10c5ab5f8ed62e20ac907b8c905c711df27de6 100644
--- a/content/shell/renderer/test_runner/WebTestProxy.h
+++ b/content/shell/renderer/test_runner/WebTestProxy.h
@@ -309,10 +309,10 @@ public:
WebTestProxyBase::setStatusText(text);
Base::setStatusText(text);
}
- virtual void didStopLoading()
+ virtual void didStopLoading(blink::WebFrame* frame)
{
WebTestProxyBase::didStopLoading();
- Base::didStopLoading();
+ Base::didStopLoading(frame);
}
virtual blink::WebUserMediaClient* userMediaClient()
{
« no previous file with comments | « content/renderer/render_view_impl.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698