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

Unified Diff: ui/views/controls/button/label_button.cc

Issue 2259753003: Re-write many calls to WrapUnique() with MakeUnique() (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 4 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
« no previous file with comments | « ui/views/border.cc ('k') | ui/views/controls/button/md_text_button.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/views/controls/button/label_button.cc
diff --git a/ui/views/controls/button/label_button.cc b/ui/views/controls/button/label_button.cc
index face3975a2e5901512cbb2fb853e2e128b93b81f..860d256d0e8277bd4a0f5ef4d5d185e923241886 100644
--- a/ui/views/controls/button/label_button.cc
+++ b/ui/views/controls/button/label_button.cc
@@ -458,10 +458,10 @@ std::unique_ptr<views::InkDropHighlight> LabelButton::CreateInkDropHighlight()
return GetText().empty()
? CreateDefaultInkDropHighlight(
gfx::RectF(image()->GetMirroredBounds()).CenterPoint())
- : base::WrapUnique(new views::InkDropHighlight(
+ : base::MakeUnique<views::InkDropHighlight>(
size(), kInkDropSmallCornerRadius,
gfx::RectF(GetLocalBounds()).CenterPoint(),
- GetInkDropBaseColor()));
+ GetInkDropBaseColor());
}
void LabelButton::StateChanged() {
« no previous file with comments | « ui/views/border.cc ('k') | ui/views/controls/button/md_text_button.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698