| 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/geometry/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 void ScheduleWrenchIconPaint() override { ++schedule_paint_count_; } | 23 void ScheduleWrenchIconPaint() override { ++schedule_paint_count_; } |
| 24 | 24 |
| (...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after 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 |