| 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/power_menu_button.h" | 5 #include "chrome/browser/chromeos/status/power_menu_button.h" |
| 6 | 6 |
| 7 #include "chrome/browser/chromeos/frame/browser_view.h" | 7 #include "chrome/browser/chromeos/frame/browser_view.h" |
| 8 #include "chrome/browser/chromeos/status/status_area_view.h" |
| 8 #include "chrome/browser/chromeos/view_ids.h" | 9 #include "chrome/browser/chromeos/view_ids.h" |
| 9 #include "chrome/browser/ui/browser.h" | 10 #include "chrome/browser/ui/browser.h" |
| 10 #include "chrome/browser/ui/browser_window.h" | 11 #include "chrome/browser/ui/browser_window.h" |
| 11 #include "chrome/test/base/in_process_browser_test.h" | 12 #include "chrome/test/base/in_process_browser_test.h" |
| 12 #include "ui/views/view.h" | 13 #include "ui/views/view.h" |
| 13 | 14 |
| 14 #if defined(USE_AURA) | 15 #if defined(USE_AURA) |
| 15 #include "chrome/browser/ui/views/aura/chrome_shell_delegate.h" | 16 #include "chrome/browser/ui/views/aura/chrome_shell_delegate.h" |
| 16 #endif | 17 #endif |
| 17 | 18 |
| 18 namespace chromeos { | 19 namespace chromeos { |
| 19 | 20 |
| 20 class PowerMenuButtonTest : public InProcessBrowserTest { | 21 class PowerMenuButtonTest : public InProcessBrowserTest { |
| 21 protected: | 22 protected: |
| 22 PowerMenuButtonTest() : InProcessBrowserTest() { | 23 PowerMenuButtonTest() : InProcessBrowserTest() { |
| 23 } | 24 } |
| 24 | 25 |
| 25 virtual void SetUpInProcessBrowserTestFixture() { | 26 virtual void SetUpInProcessBrowserTestFixture() { |
| 26 } | 27 } |
| 27 | 28 |
| 28 PowerMenuButton* GetPowerMenuButton() { | 29 PowerMenuButton* GetPowerMenuButton() { |
| 29 views::View* view = | 30 views::View* view = |
| 30 #if defined(USE_AURA) | 31 #if defined(USE_AURA) |
| 31 ChromeShellDelegate::instance()->GetStatusAreaForTest(); | 32 ChromeShellDelegate::instance()->GetStatusArea(); |
| 32 #else | 33 #else |
| 33 static_cast<BrowserView*>(browser()->window()); | 34 static_cast<BrowserView*>(browser()->window()); |
| 34 #endif | 35 #endif |
| 35 return static_cast<PowerMenuButton*>( | 36 return static_cast<PowerMenuButton*>( |
| 36 view->GetViewByID(VIEW_ID_STATUS_BUTTON_POWER)); | 37 view->GetViewByID(VIEW_ID_STATUS_BUTTON_POWER)); |
| 37 } | 38 } |
| 38 | 39 |
| 39 string16 CallPowerChangedAndGetTooltipText(const PowerSupplyStatus& status) { | 40 string16 CallPowerChangedAndGetTooltipText(const PowerSupplyStatus& status) { |
| 40 PowerMenuButton* power = GetPowerMenuButton(); | 41 PowerMenuButton* power = GetPowerMenuButton(); |
| 41 | 42 |
| (...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 144 // Simulate various levels of discharging. | 145 // Simulate various levels of discharging. |
| 145 for (double percent = 5.0; percent < 100.0; percent += 5.0) { | 146 for (double percent = 5.0; percent < 100.0; percent += 5.0) { |
| 146 status.battery_percentage = percent; | 147 status.battery_percentage = percent; |
| 147 const string16 tooltip_after = CallPowerChangedAndGetTooltipText(status); | 148 const string16 tooltip_after = CallPowerChangedAndGetTooltipText(status); |
| 148 EXPECT_NE(tooltip_before, tooltip_after); | 149 EXPECT_NE(tooltip_before, tooltip_after); |
| 149 tooltip_before = tooltip_after; | 150 tooltip_before = tooltip_after; |
| 150 } | 151 } |
| 151 } | 152 } |
| 152 | 153 |
| 153 } // namespace chromeos | 154 } // namespace chromeos |
| OLD | NEW |