| Index: chrome/browser/ui/views/location_bar/icon_label_bubble_view_unittest.cc
|
| diff --git a/chrome/browser/ui/views/location_bar/icon_label_bubble_view_unittest.cc b/chrome/browser/ui/views/location_bar/icon_label_bubble_view_unittest.cc
|
| index 8f60ba4365bde7227049669ffd0cb10cc64e30ae..3ceb336e38d600b86905af51bd1aebaecf047e8b 100644
|
| --- a/chrome/browser/ui/views/location_bar/icon_label_bubble_view_unittest.cc
|
| +++ b/chrome/browser/ui/views/location_bar/icon_label_bubble_view_unittest.cc
|
| @@ -26,8 +26,8 @@ class TestIconLabelBubbleView : public IconLabelBubbleView {
|
| SHRINKING,
|
| };
|
|
|
| - TestIconLabelBubbleView(const gfx::FontList& font_list, SkColor color)
|
| - : IconLabelBubbleView(0, font_list, color, false), value_(0) {
|
| + explicit TestIconLabelBubbleView(const gfx::FontList& font_list)
|
| + : IconLabelBubbleView(0, font_list, false), value_(0) {
|
| GetImageView()->SetImageSize(gfx::Size(kImageSize, kImageSize));
|
| SetLabel(base::ASCIIToUTF16("Label"));
|
| }
|
| @@ -104,7 +104,7 @@ class IconLabelBubbleViewTest : public views::ViewsTestBase {
|
| void SetUp() override {
|
| views::ViewsTestBase::SetUp();
|
| gfx::FontList font_list;
|
| - view_.reset(new TestIconLabelBubbleView(font_list, kTestColor));
|
| + view_.reset(new TestIconLabelBubbleView(font_list));
|
| }
|
|
|
| void VerifyWithAnimationStep(int step) {
|
|
|