diff options
| author | benwells@chromium.org <benwells@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-04-26 00:47:32 +0000 |
|---|---|---|
| committer | benwells@chromium.org <benwells@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-04-26 00:47:32 +0000 |
| commit | d1fe13594173c936db2383800499c3efb9ec693a (patch) | |
| tree | d617e05aa46bb1a00af37cb00c34dec6ade4cad4 /content/browser/renderer_host/render_widget_host_impl.cc | |
| parent | abb842afad202c45897453ccc2370d1211935438 (diff) | |
| download | chromium_src-d1fe13594173c936db2383800499c3efb9ec693a.zip chromium_src-d1fe13594173c936db2383800499c3efb9ec693a.tar.gz chromium_src-d1fe13594173c936db2383800499c3efb9ec693a.tar.bz2 | |
Remove EPM:all_hosts_ and use all_extension_views_ instead.
EPM:all_hosts_ is used to look for extension render view hosts,
under the assumption it has all of them. This assumption is wrong,
and the name is confusing, so we're removing all_hosts_. A different
container can be used: all_extension_views, which contains
all the RenderViewHosts for extensions.
BUG=102617
TEST=Covered by existing tests
Review URL: http://codereview.chromium.org/10113005
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@134028 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/browser/renderer_host/render_widget_host_impl.cc')
| -rw-r--r-- | content/browser/renderer_host/render_widget_host_impl.cc | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/content/browser/renderer_host/render_widget_host_impl.cc b/content/browser/renderer_host/render_widget_host_impl.cc index d4779ae..c0c5293 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 { + return is_loading_; +} + bool RenderWidgetHostImpl::IsRenderView() const { return false; } |
