| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "base/memory/scoped_ptr.h" | 5 #include "base/memory/scoped_ptr.h" |
| 6 #include "chrome/browser/speech/speech_input_bubble.h" | 6 #include "chrome/browser/speech/speech_recognition_bubble.h" |
| 7 #include "chrome/browser/ui/browser.h" | 7 #include "chrome/browser/ui/browser.h" |
| 8 #include "chrome/browser/ui/tab_contents/tab_contents_wrapper.h" | 8 #include "chrome/browser/ui/tab_contents/tab_contents_wrapper.h" |
| 9 #include "chrome/test/base/in_process_browser_test.h" | 9 #include "chrome/test/base/in_process_browser_test.h" |
| 10 #include "testing/gtest/include/gtest/gtest.h" | 10 #include "testing/gtest/include/gtest/gtest.h" |
| 11 #include "ui/gfx/rect.h" | 11 #include "ui/gfx/rect.h" |
| 12 | 12 |
| 13 class SpeechInputBubbleTest : public SpeechInputBubbleDelegate, | 13 class SpeechRecognitionBubbleTest : public SpeechRecognitionBubbleDelegate, |
| 14 public InProcessBrowserTest { | 14 public InProcessBrowserTest { |
| 15 public: | 15 public: |
| 16 // SpeechInputBubble::Delegate methods. | 16 // SpeechRecognitionBubble::Delegate methods. |
| 17 virtual void InfoBubbleButtonClicked(SpeechInputBubble::Button button) {} | 17 virtual void InfoBubbleButtonClicked(SpeechRecognitionBubble::Button button) { |
| 18 } |
| 18 virtual void InfoBubbleFocusChanged() {} | 19 virtual void InfoBubbleFocusChanged() {} |
| 19 | 20 |
| 20 protected: | 21 protected: |
| 21 }; | 22 }; |
| 22 | 23 |
| 23 IN_PROC_BROWSER_TEST_F(SpeechInputBubbleTest, CreateAndDestroy) { | 24 IN_PROC_BROWSER_TEST_F(SpeechRecognitionBubbleTest, CreateAndDestroy) { |
| 24 gfx::Rect element_rect(100, 100, 100, 100); | 25 gfx::Rect element_rect(100, 100, 100, 100); |
| 25 scoped_ptr<SpeechInputBubble> bubble(SpeechInputBubble::Create( | 26 scoped_ptr<SpeechRecognitionBubble> bubble(SpeechRecognitionBubble::Create( |
| 26 browser()->GetSelectedWebContents(), this, element_rect)); | 27 browser()->GetSelectedWebContents(), this, element_rect)); |
| 27 EXPECT_TRUE(bubble.get()); | 28 EXPECT_TRUE(bubble.get()); |
| 28 } | 29 } |
| 29 | 30 |
| 30 IN_PROC_BROWSER_TEST_F(SpeechInputBubbleTest, ShowAndDestroy) { | 31 IN_PROC_BROWSER_TEST_F(SpeechRecognitionBubbleTest, ShowAndDestroy) { |
| 31 gfx::Rect element_rect(100, 100, 100, 100); | 32 gfx::Rect element_rect(100, 100, 100, 100); |
| 32 scoped_ptr<SpeechInputBubble> bubble(SpeechInputBubble::Create( | 33 scoped_ptr<SpeechRecognitionBubble> bubble(SpeechRecognitionBubble::Create( |
| 33 browser()->GetSelectedWebContents(), this, element_rect)); | 34 browser()->GetSelectedWebContents(), this, element_rect)); |
| 34 EXPECT_TRUE(bubble.get()); | 35 EXPECT_TRUE(bubble.get()); |
| 35 bubble->Show(); | 36 bubble->Show(); |
| 36 } | 37 } |
| 37 | 38 |
| 38 IN_PROC_BROWSER_TEST_F(SpeechInputBubbleTest, ShowAndHide) { | 39 IN_PROC_BROWSER_TEST_F(SpeechRecognitionBubbleTest, ShowAndHide) { |
| 39 gfx::Rect element_rect(100, 100, 100, 100); | 40 gfx::Rect element_rect(100, 100, 100, 100); |
| 40 scoped_ptr<SpeechInputBubble> bubble(SpeechInputBubble::Create( | 41 scoped_ptr<SpeechRecognitionBubble> bubble(SpeechRecognitionBubble::Create( |
| 41 browser()->GetSelectedWebContents(), this, element_rect)); | 42 browser()->GetSelectedWebContents(), this, element_rect)); |
| 42 EXPECT_TRUE(bubble.get()); | 43 EXPECT_TRUE(bubble.get()); |
| 43 bubble->Show(); | 44 bubble->Show(); |
| 44 bubble->Hide(); | 45 bubble->Hide(); |
| 45 } | 46 } |
| 46 | 47 |
| 47 IN_PROC_BROWSER_TEST_F(SpeechInputBubbleTest, ShowAndHideTwice) { | 48 IN_PROC_BROWSER_TEST_F(SpeechRecognitionBubbleTest, ShowAndHideTwice) { |
| 48 gfx::Rect element_rect(100, 100, 100, 100); | 49 gfx::Rect element_rect(100, 100, 100, 100); |
| 49 scoped_ptr<SpeechInputBubble> bubble(SpeechInputBubble::Create( | 50 scoped_ptr<SpeechRecognitionBubble> bubble(SpeechRecognitionBubble::Create( |
| 50 browser()->GetSelectedWebContents(), this, element_rect)); | 51 browser()->GetSelectedWebContents(), this, element_rect)); |
| 51 EXPECT_TRUE(bubble.get()); | 52 EXPECT_TRUE(bubble.get()); |
| 52 bubble->Show(); | 53 bubble->Show(); |
| 53 bubble->Hide(); | 54 bubble->Hide(); |
| 54 bubble->Show(); | 55 bubble->Show(); |
| 55 bubble->Hide(); | 56 bubble->Hide(); |
| 56 } | 57 } |
| OLD | NEW |