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

Unified Diff: chrome/browser/ui/views/subtle_notification_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/subtle_notification_view.cc
diff --git a/chrome/browser/ui/views/subtle_notification_view.cc b/chrome/browser/ui/views/subtle_notification_view.cc
index bcf9e967bd829ab3b88b357ff2e96061ff239d68..d8f19ac97f227cd19360a92eae01e72f2d771fc6 100644
--- a/chrome/browser/ui/views/subtle_notification_view.cc
+++ b/chrome/browser/ui/views/subtle_notification_view.cc
@@ -129,7 +129,7 @@ void SubtleNotificationView::InstructionView::AddTextSegment(
key->SetLayoutManager(key_name_layout);
key->AddChildView(label);
// The key name has a border around it.
- std::unique_ptr<views::Border> border(views::Border::CreateRoundedRectBorder(
+ std::unique_ptr<views::Border> border(views::CreateRoundedRectBorder(
kKeyNameBorderPx, kKeyNameCornerRadius, foreground_color_));
key->SetBorder(std::move(border));
AddChildView(key);

Powered by Google App Engine
This is Rietveld 408576698