Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(113)

Side by Side Diff: chrome/browser/ui/toolbar/wrench_icon_painter_unittest.cc

Issue 823133004: Cleanup: Update the path to gfx rect headers. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rect_f.h Created 5 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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 }
OLDNEW
« no previous file with comments | « chrome/browser/ui/toolbar/wrench_icon_painter.cc ('k') | chrome/browser/ui/views/app_list/linux/app_list_linux_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698