diff options
author | jam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-07-12 19:26:36 +0000 |
---|---|---|
committer | jam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-07-12 19:26:36 +0000 |
commit | 181a95ee9b85a31aec5521beb6b0bf25b71ac508 (patch) | |
tree | 65acadcf3545dbab11b907c890f5b33b1ed1d45e /chrome/browser/notifications | |
parent | 77826e7acb3517bf311f0b0f22e1ba1a759b1cd9 (diff) | |
download | chromium_src-181a95ee9b85a31aec5521beb6b0bf25b71ac508.zip chromium_src-181a95ee9b85a31aec5521beb6b0bf25b71ac508.tar.gz chromium_src-181a95ee9b85a31aec5521beb6b0bf25b71ac508.tar.bz2 |
Get rid of the remaining implementation in TabContentsView and make all the methods be pure. This removes the dependency on RenderViewHostDelegateHelper, which is Chrome specific.
BUG=87702
Review URL: http://codereview.chromium.org/7285050
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@92217 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/notifications')
-rw-r--r-- | chrome/browser/notifications/balloon_host.cc | 10 | ||||
-rw-r--r-- | chrome/browser/notifications/balloon_host.h | 4 |
2 files changed, 0 insertions, 14 deletions
diff --git a/chrome/browser/notifications/balloon_host.cc b/chrome/browser/notifications/balloon_host.cc index 2728062..0c840a9 100644 --- a/chrome/browser/notifications/balloon_host.cc +++ b/chrome/browser/notifications/balloon_host.cc @@ -204,16 +204,6 @@ void BalloonHost::EnableWebUI() { enable_web_ui_ = true; } -void BalloonHost::UpdateInspectorSetting(const std::string& key, - const std::string& value) { - RenderViewHostDelegateHelper::UpdateInspectorSetting( - GetProfile(), key, value); -} - -void BalloonHost::ClearInspectorSettings() { - RenderViewHostDelegateHelper::ClearInspectorSettings(GetProfile()); -} - BalloonHost::~BalloonHost() { DCHECK(!render_view_host_); } diff --git a/chrome/browser/notifications/balloon_host.h b/chrome/browser/notifications/balloon_host.h index 849a550..4393665 100644 --- a/chrome/browser/notifications/balloon_host.h +++ b/chrome/browser/notifications/balloon_host.h @@ -102,10 +102,6 @@ class BalloonHost : public RenderViewHostDelegate, // Enable Web UI. This has to be called before renderer is created. void EnableWebUI(); - virtual void UpdateInspectorSetting(const std::string& key, - const std::string& value); - virtual void ClearInspectorSettings(); - // Returns whether the associated render view is ready. Used only for testing. bool IsRenderViewReady() const; |