OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 "chrome/browser/chromeos/status/input_method_menu_button.h" | 5 #include "chrome/browser/chromeos/status/input_method_menu_button.h" |
6 | 6 |
7 #include "base/utf_string_conversions.h" | 7 #include "base/utf_string_conversions.h" |
8 #include "chrome/browser/chromeos/cros/cros_in_process_browser_test.h" | 8 #include "chrome/browser/chromeos/cros/cros_in_process_browser_test.h" |
9 #include "chrome/browser/chromeos/frame/browser_view.h" | 9 #include "chrome/browser/chromeos/frame/browser_view.h" |
10 #include "chrome/browser/chromeos/status/status_area_view.h" | |
11 #include "chrome/browser/chromeos/view_ids.h" | 10 #include "chrome/browser/chromeos/view_ids.h" |
12 #include "chrome/browser/ui/browser.h" | 11 #include "chrome/browser/ui/browser.h" |
13 #include "chrome/browser/ui/browser_window.h" | 12 #include "chrome/browser/ui/browser_window.h" |
14 #include "grit/theme_resources.h" | 13 #include "grit/theme_resources.h" |
15 | 14 |
16 namespace chromeos { | 15 namespace chromeos { |
17 | 16 |
18 class InputMethodMenuButtonTest : public CrosInProcessBrowserTest { | 17 class InputMethodMenuButtonTest : public CrosInProcessBrowserTest { |
19 protected: | 18 protected: |
20 InputMethodMenuButtonTest() | 19 InputMethodMenuButtonTest() |
21 : CrosInProcessBrowserTest() { | 20 : CrosInProcessBrowserTest() { |
22 } | 21 } |
23 | 22 |
24 virtual void SetUpInProcessBrowserTestFixture() { | 23 virtual void SetUpInProcessBrowserTestFixture() { |
25 cros_mock_->InitStatusAreaMocks(); | 24 cros_mock_->InitStatusAreaMocks(); |
26 cros_mock_->SetStatusAreaMocksExpectations(); | 25 cros_mock_->SetStatusAreaMocksExpectations(); |
27 } | 26 } |
28 | 27 |
29 InputMethodMenuButton* GetInputMethodMenuButton() { | 28 InputMethodMenuButton* GetInputMethodMenuButton() { |
30 BrowserView* view = static_cast<BrowserView*>(browser()->window()); | 29 BrowserView* view = static_cast<BrowserView*>(browser()->window()); |
31 return static_cast<StatusAreaView*>(view-> | 30 return static_cast<InputMethodMenuButton*>(view->GetViewByID( |
32 GetViewByID(VIEW_ID_STATUS_AREA))->input_method_view(); | 31 VIEW_ID_STATUS_BUTTON_INPUT_METHOD)); |
33 } | 32 } |
34 }; | 33 }; |
35 | 34 |
36 IN_PROC_BROWSER_TEST_F(InputMethodMenuButtonTest, InitialIndicatorTest) { | 35 IN_PROC_BROWSER_TEST_F(InputMethodMenuButtonTest, InitialIndicatorTest) { |
37 InputMethodMenuButton* input_method = GetInputMethodMenuButton(); | 36 InputMethodMenuButton* input_method = GetInputMethodMenuButton(); |
38 ASSERT_TRUE(input_method != NULL); | 37 ASSERT_TRUE(input_method != NULL); |
39 | 38 |
40 // By default, show the indicator of the hardware keyboard, which is set | 39 // By default, show the indicator of the hardware keyboard, which is set |
41 // to US for tests. | 40 // to US for tests. |
42 EXPECT_EQ(ASCIIToUTF16("US"), input_method->text()); | 41 EXPECT_EQ(ASCIIToUTF16("US"), input_method->text()); |
43 } | 42 } |
44 | 43 |
45 } // namespace chromeos | 44 } // namespace chromeos |
OLD | NEW |