Chromium Code Reviews| Index: content/browser/renderer_host/render_widget_host_impl.cc |
| diff --git a/content/browser/renderer_host/render_widget_host_impl.cc b/content/browser/renderer_host/render_widget_host_impl.cc |
| index d4779ae3cfd7a9dea43416593bc876ec2beaf7ef..c0c529325d12d3d8c0d068b1b841cab956f32a15 100644 |
| --- a/content/browser/renderer_host/render_widget_host_impl.cc |
| +++ b/content/browser/renderer_host/render_widget_host_impl.cc |
| @@ -243,6 +243,10 @@ void RenderWidgetHostImpl::Shutdown() { |
| Destroy(); |
| } |
| +bool RenderWidgetHostImpl::IsLoading() const { |
|
Aaron Boodman
2012/04/20 06:34:56
Style should be: is_loading()
benwells
2012/04/23 05:00:26
I think its like this as its a private impl of an
Matt Perry
2012/04/23 21:53:04
Yeah, is_loading() style is only used for cheap no
|
| + return is_loading_; |
| +} |
| + |
| bool RenderWidgetHostImpl::IsRenderView() const { |
| return false; |
| } |