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

Unified Diff: chrome/browser/ui/views/content_setting_bubble_contents.cc

Issue 2675983003: views::Separator cleanup. (Closed)
Patch Set: revert test change Created 3 years, 10 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/content_setting_bubble_contents.cc
diff --git a/chrome/browser/ui/views/content_setting_bubble_contents.cc b/chrome/browser/ui/views/content_setting_bubble_contents.cc
index 6e285305c24bf5341f729210509b8e18ba502424..b8c68f2d6623ccfa3caf7554b80fcfb91f0026a0 100644
--- a/chrome/browser/ui/views/content_setting_bubble_contents.cc
+++ b/chrome/browser/ui/views/content_setting_bubble_contents.cc
@@ -420,8 +420,8 @@ void ContentSettingBubbleContents::Init() {
if (!layout_delegate->IsHarmonyMode()) {
layout->AddPaddingRow(0, related_control_vertical_spacing);
layout->StartRow(0, kSingleColumnSetId);
- layout->AddView(new views::Separator(views::Separator::HORIZONTAL), 1, 1,
- GridLayout::FILL, GridLayout::FILL);
+ layout->AddView(new views::Separator(), 1, 1, GridLayout::FILL,
+ GridLayout::FILL);
}
layout->AddPaddingRow(0, related_control_vertical_spacing);
}

Powered by Google App Engine
This is Rietveld 408576698