summaryrefslogtreecommitdiffstats
path: root/chrome/common/temp_scaffolding_stubs.h
diff options
context:
space:
mode:
authoraa@chromium.org <aa@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-05-19 18:27:09 +0000
committeraa@chromium.org <aa@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-05-19 18:27:09 +0000
commit810e622b58b4da015c11e8b6c71f3e95b23afe1b (patch)
tree56c0cf5e6ab1e6ea3f0a4a5cc8c26d0cd651d24f /chrome/common/temp_scaffolding_stubs.h
parentf38b16fd2753b2d603e0a2a137227a132c77057b (diff)
downloadchromium_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/common/temp_scaffolding_stubs.h')
-rw-r--r--chrome/common/temp_scaffolding_stubs.h13
1 files changed, 0 insertions, 13 deletions
diff --git a/chrome/common/temp_scaffolding_stubs.h b/chrome/common/temp_scaffolding_stubs.h
index 1b6ae9c..ac62d3c1 100644
--- a/chrome/common/temp_scaffolding_stubs.h
+++ b/chrome/common/temp_scaffolding_stubs.h
@@ -508,17 +508,4 @@ class HWNDView {
};
} // namespace views
-class HWNDHtmlView : public views::HWNDView {
- public:
- HWNDHtmlView(const GURL& content_url, RenderViewHostDelegate* delegate,
- bool allow_dom_ui_bindings, SiteInstance* instance) {
- NOTIMPLEMENTED();
- }
- virtual ~HWNDHtmlView() {}
-
- RenderViewHost* render_view_host() { NOTIMPLEMENTED(); return NULL; }
- SiteInstance* site_instance() { NOTIMPLEMENTED(); return NULL; }
-};
-
-
#endif // CHROME_COMMON_TEMP_SCAFFOLDING_STUBS_H_