diff options
author | aa@chromium.org <aa@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-05-19 18:27:09 +0000 |
---|---|---|
committer | aa@chromium.org <aa@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-05-19 18:27:09 +0000 |
commit | 810e622b58b4da015c11e8b6c71f3e95b23afe1b (patch) | |
tree | 56c0cf5e6ab1e6ea3f0a4a5cc8c26d0cd651d24f /chrome/browser/renderer_host | |
parent | f38b16fd2753b2d603e0a2a137227a132c77057b (diff) | |
download | chromium_src-810e622b58b4da015c11e8b6c71f3e95b23afe1b.zip chromium_src-810e622b58b4da015c11e8b6c71f3e95b23afe1b.tar.gz chromium_src-810e622b58b4da015c11e8b6c71f3e95b23afe1b.tar.bz2 |
Fix inspection of extensions.
As a bonus, debugging of extensions now works. Go OOP inspector team!
Inspection code was calling RVHD::GetProfile(), which was not implemented by ExtensionHost. Looking into this, it seems better to just remove the method from the interface since Profile is already accessible by way of RVH.
The only caller to RVHD::GetProfile() besides the inspector was HWNDHtmlView which is itself dead code, so I removed it too.
Review URL: http://codereview.chromium.org/115501
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@16392 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/renderer_host')
-rw-r--r-- | chrome/browser/renderer_host/render_view_host_delegate.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/chrome/browser/renderer_host/render_view_host_delegate.h b/chrome/browser/renderer_host/render_view_host_delegate.h index ca6edde..75a80d4 100644 --- a/chrome/browser/renderer_host/render_view_host_delegate.h +++ b/chrome/browser/renderer_host/render_view_host_delegate.h @@ -154,9 +154,6 @@ class RenderViewHostDelegate { virtual View* GetViewDelegate() const { return NULL; } virtual Save* GetSaveDelegate() const { return NULL; } - // Retrieves the profile to be used. - virtual Profile* GetProfile() const = 0; - // Gets the URL that is currently being displayed, if there is one. virtual const GURL& GetURL() const = 0; |