Index: chrome/browser/speech/speech_input_bubble_views.cc |
diff --git a/chrome/browser/speech/speech_input_bubble_views.cc b/chrome/browser/speech/speech_input_bubble_views.cc |
index 83ccad032dd23302ece5f6fd6ae343a493db4930..1eadfc3a3914f14bd093ad3a9c5070496b2e3d24 100644 |
--- a/chrome/browser/speech/speech_input_bubble_views.cc |
+++ b/chrome/browser/speech/speech_input_bubble_views.cc |
@@ -13,10 +13,6 @@ |
#include "chrome/browser/tab_contents/tab_contents_view.h" |
#include "chrome/browser/ui/browser.h" |
#include "chrome/browser/views/info_bubble.h" |
-#include "chrome/common/notification_observer.h" |
-#include "chrome/common/notification_registrar.h" |
-#include "chrome/common/notification_source.h" |
-#include "chrome/common/notification_type.h" |
#include "gfx/canvas.h" |
#include "grit/generated_resources.h" |
#include "grit/theme_resources.h" |
@@ -196,8 +192,7 @@ void ContentView::Layout() { |
// Implementation of SpeechInputBubble. |
class SpeechInputBubbleImpl |
: public SpeechInputBubbleBase, |
- public InfoBubbleDelegate, |
- public NotificationObserver { |
+ public InfoBubbleDelegate { |
public: |
SpeechInputBubbleImpl(TabContents* tab_contents, |
Delegate* delegate, |
@@ -216,11 +211,6 @@ class SpeechInputBubbleImpl |
// |element_rect| is the html element's bounds in page coordinates. |
gfx::Rect GetInfoBubbleTarget(const gfx::Rect& element_rect); |
- // NotificationObserver implementation. |
- virtual void Observe(NotificationType type, |
- const NotificationSource& source, |
- const NotificationDetails& details); |
- |
// InfoBubbleDelegate |
virtual void InfoBubbleClosing(InfoBubble* info_bubble, |
bool closed_by_escape); |
@@ -230,9 +220,7 @@ class SpeechInputBubbleImpl |
private: |
Delegate* delegate_; |
InfoBubble* info_bubble_; |
- TabContents* tab_contents_; |
ContentView* bubble_content_; |
- NotificationRegistrar registrar_; |
gfx::Rect element_rect_; |
// Set to true if the object is being destroyed normally instead of the |
@@ -245,9 +233,9 @@ class SpeechInputBubbleImpl |
SpeechInputBubbleImpl::SpeechInputBubbleImpl(TabContents* tab_contents, |
Delegate* delegate, |
const gfx::Rect& element_rect) |
- : delegate_(delegate), |
+ : SpeechInputBubbleBase(tab_contents), |
+ delegate_(delegate), |
info_bubble_(NULL), |
- tab_contents_(tab_contents), |
bubble_content_(NULL), |
element_rect_(element_rect), |
did_invoke_close_(false) { |
@@ -261,26 +249,14 @@ SpeechInputBubbleImpl::~SpeechInputBubbleImpl() { |
gfx::Rect SpeechInputBubbleImpl::GetInfoBubbleTarget( |
const gfx::Rect& element_rect) { |
gfx::Rect container_rect; |
- tab_contents_->GetContainerBounds(&container_rect); |
+ tab_contents()->GetContainerBounds(&container_rect); |
return gfx::Rect( |
container_rect.x() + element_rect.x() + kBubbleTargetOffsetX, |
container_rect.y() + element_rect.y() + element_rect.height(), 1, 1); |
} |
-void SpeechInputBubbleImpl::Observe(NotificationType type, |
- const NotificationSource& source, |
- const NotificationDetails& details) { |
- if (type == NotificationType::TAB_CONTENTS_DESTROYED) { |
- delegate_->InfoBubbleButtonClicked(SpeechInputBubble::BUTTON_CANCEL); |
- } else { |
- NOTREACHED() << "Unknown notification"; |
- } |
-} |
- |
void SpeechInputBubbleImpl::InfoBubbleClosing(InfoBubble* info_bubble, |
bool closed_by_escape) { |
- registrar_.Remove(this, NotificationType::TAB_CONTENTS_DESTROYED, |
- Source<TabContents>(tab_contents_)); |
info_bubble_ = NULL; |
bubble_content_ = NULL; |
if (!did_invoke_close_) |
@@ -303,7 +279,7 @@ void SpeechInputBubbleImpl::Show() { |
UpdateLayout(); |
views::Widget* parent = views::Widget::GetWidgetFromNativeWindow( |
- tab_contents_->view()->GetTopLevelNativeWindow()); |
+ tab_contents()->view()->GetTopLevelNativeWindow()); |
info_bubble_ = InfoBubble::Show(parent, |
GetInfoBubbleTarget(element_rect_), |
BubbleBorder::TOP_LEFT, bubble_content_, |
@@ -315,9 +291,6 @@ void SpeechInputBubbleImpl::Show() { |
// to end so the caller can manage this object's life cycle like a normal |
// stack based or member variable object. |
info_bubble_->set_fade_away_on_close(false); |
- |
- registrar_.Add(this, NotificationType::TAB_CONTENTS_DESTROYED, |
- Source<TabContents>(tab_contents_)); |
} |
void SpeechInputBubbleImpl::Hide() { |