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

Unified Diff: chrome/browser/ui/views/location_bar/icon_label_bubble_view_unittest.cc

Issue 2348853004: Remove non-md code in location bar (Views). (Closed)
Patch Set: images Created 4 years, 3 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 side-by-side diff with in-line comments
Download patch
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) {

Powered by Google App Engine
This is Rietveld 408576698