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

Unified Diff: chrome/browser/chromeos/ui/echo_dialog_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/chromeos/ui/echo_dialog_view.cc
diff --git a/chrome/browser/chromeos/ui/echo_dialog_view.cc b/chrome/browser/chromeos/ui/echo_dialog_view.cc
index 726d7fd6013756cbf1978d48b0667a1998b64ac9..70c3e63e9ba326e7e63643f46ccd7904ab1b4382 100644
--- a/chrome/browser/chromeos/ui/echo_dialog_view.cc
+++ b/chrome/browser/chromeos/ui/echo_dialog_view.cc
@@ -171,10 +171,9 @@ gfx::Size EchoDialogView::GetPreferredSize() const {
}
void EchoDialogView::SetLabelBorderAndBounds() {
- label_->SetBorder(views::Border::CreateEmptyBorder(kDialogLabelTopInset,
- kDialogLabelLeftInset,
- kDialogLabelBottomInset,
- kDialogLabelRightInset));
+ label_->SetBorder(views::CreateEmptyBorder(
+ kDialogLabelTopInset, kDialogLabelLeftInset, kDialogLabelBottomInset,
+ kDialogLabelRightInset));
label_->SetBounds(label_->x(),
label_->y(),

Powered by Google App Engine
This is Rietveld 408576698