| 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();
|
| }
|
| }
|
|
|
|
|