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

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

Issue 2480203002: ui: Cleanup class/struct forward declarations (Closed)
Patch Set: Sync CL to position 430550 Created 4 years, 1 month 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/find_bar_view.cc
diff --git a/chrome/browser/ui/views/find_bar_view.cc b/chrome/browser/ui/views/find_bar_view.cc
index bedf469e44a51fedf352d119db20d79b148c55f5..7d5cbca885501ce38338576c68b979186f71d76a 100644
--- a/chrome/browser/ui/views/find_bar_view.cc
+++ b/chrome/browser/ui/views/find_bar_view.cc
@@ -163,11 +163,11 @@ FindBarView::FindBarView(FindBarHost* host)
base::MakeUnique<views::ViewTargeter>(this));
AddChildViewAt(match_count_text_, 1);
- separator_->SetBorder(views::Border::CreateEmptyBorder(
- 0, kSeparatorLeftSpacing, 0, kSeparatorRightSpacing));
+ separator_->SetBorder(views::CreateEmptyBorder(0, kSeparatorLeftSpacing, 0,
+ kSeparatorRightSpacing));
AddChildViewAt(separator_, 2);
- find_text_->SetBorder(views::Border::NullBorder());
+ find_text_->SetBorder(views::NullBorder());
views::BoxLayout* manager =
new views::BoxLayout(views::BoxLayout::kHorizontal, kInteriorPadding,

Powered by Google App Engine
This is Rietveld 408576698