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

Unified Diff: content/renderer/npapi/webplugin_impl.cc

Issue 180113003: Prepare for per frame did{Start,Stop}Loading calls (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix progress calculation, add test 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
Index: content/renderer/npapi/webplugin_impl.cc
diff --git a/content/renderer/npapi/webplugin_impl.cc b/content/renderer/npapi/webplugin_impl.cc
index 7df9ea41759a3be5b448b3a387d3eca064b8f6e9..5e53960e38ae7544e76fa86a6312d319ed16a304 100644
--- a/content/renderer/npapi/webplugin_impl.cc
+++ b/content/renderer/npapi/webplugin_impl.cc
@@ -1358,14 +1358,14 @@ void WebPluginImpl::InitiateHTTPRangeRequest(
void WebPluginImpl::DidStartLoading() {
if (render_view_.get()) {
// TODO(darin): Make is_loading_ be a counter!
- render_view_->didStartLoading();
+ render_view_->DidStartLoading();
}
}
void WebPluginImpl::DidStopLoading() {
if (render_view_.get()) {
// TODO(darin): Make is_loading_ be a counter!
- render_view_->didStopLoading();
+ render_view_->DidStopLoading();
}
}

Powered by Google App Engine
This is Rietveld 408576698