| OLD | NEW |
| 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2013 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/ui/toolbar/wrench_icon_painter.h" | 5 #include "chrome/browser/ui/toolbar/wrench_icon_painter.h" |
| 6 | 6 |
| 7 #include "base/message_loop/message_loop.h" | 7 #include "base/message_loop/message_loop.h" |
| 8 #include "chrome/browser/themes/theme_service.h" | 8 #include "chrome/browser/themes/theme_service.h" |
| 9 #include "chrome/browser/themes/theme_service_factory.h" | 9 #include "chrome/browser/themes/theme_service_factory.h" |
| 10 #include "chrome/test/base/testing_profile.h" | 10 #include "chrome/test/base/testing_profile.h" |
| 11 #include "grit/theme_resources.h" | 11 #include "grit/theme_resources.h" |
| 12 #include "testing/gtest/include/gtest/gtest.h" | 12 #include "testing/gtest/include/gtest/gtest.h" |
| 13 #include "ui/gfx/canvas.h" | 13 #include "ui/gfx/canvas.h" |
| 14 #include "ui/gfx/rect.h" | 14 #include "ui/gfx/rect.h" |
| 15 | 15 |
| 16 class WrenchIconPainterTest : public testing::Test, | 16 class WrenchIconPainterTest : public testing::Test, |
| 17 public WrenchIconPainter::Delegate { | 17 public WrenchIconPainter::Delegate { |
| 18 public: | 18 public: |
| 19 WrenchIconPainterTest() : schedule_paint_count_(0), painter_(this) { | 19 WrenchIconPainterTest() : schedule_paint_count_(0), painter_(this) { |
| 20 theme_provider_ = ThemeServiceFactory::GetForProfile(&profile_); | 20 theme_provider_ = ThemeServiceFactory::GetForProfile(&profile_); |
| 21 } | 21 } |
| 22 | 22 |
| 23 virtual void ScheduleWrenchIconPaint() OVERRIDE { ++schedule_paint_count_; } | 23 virtual void ScheduleWrenchIconPaint() override { ++schedule_paint_count_; } |
| 24 | 24 |
| 25 protected: | 25 protected: |
| 26 base::MessageLoopForUI message_loop_; // Needed for gfx::Animation. | 26 base::MessageLoopForUI message_loop_; // Needed for gfx::Animation. |
| 27 TestingProfile profile_; | 27 TestingProfile profile_; |
| 28 int schedule_paint_count_; | 28 int schedule_paint_count_; |
| 29 ui::ThemeProvider* theme_provider_; | 29 ui::ThemeProvider* theme_provider_; |
| 30 WrenchIconPainter painter_; | 30 WrenchIconPainter painter_; |
| 31 | 31 |
| 32 private: | 32 private: |
| 33 DISALLOW_COPY_AND_ASSIGN(WrenchIconPainterTest); | 33 DISALLOW_COPY_AND_ASSIGN(WrenchIconPainterTest); |
| (...skipping 25 matching lines...) Expand all Loading... |
| 59 painter_.Paint( | 59 painter_.Paint( |
| 60 &canvas, theme_provider_, rect, WrenchIconPainter::BEZEL_PRESSED); | 60 &canvas, theme_provider_, rect, WrenchIconPainter::BEZEL_PRESSED); |
| 61 } | 61 } |
| 62 | 62 |
| 63 TEST_F(WrenchIconPainterTest, PaintCallback) { | 63 TEST_F(WrenchIconPainterTest, PaintCallback) { |
| 64 painter_.SetSeverity(WrenchIconPainter::SEVERITY_LOW, true); | 64 painter_.SetSeverity(WrenchIconPainter::SEVERITY_LOW, true); |
| 65 schedule_paint_count_ = 0; | 65 schedule_paint_count_ = 0; |
| 66 painter_.AnimationProgressed(NULL); | 66 painter_.AnimationProgressed(NULL); |
| 67 EXPECT_EQ(1, schedule_paint_count_); | 67 EXPECT_EQ(1, schedule_paint_count_); |
| 68 } | 68 } |
| OLD | NEW |