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

Unified Diff: ash/common/system/tray/tray_popup_utils.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
« no previous file with comments | « ash/common/system/tray/tray_details_view.cc ('k') | ash/common/system/tray/tray_utils.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ash/common/system/tray/tray_popup_utils.cc
diff --git a/ash/common/system/tray/tray_popup_utils.cc b/ash/common/system/tray/tray_popup_utils.cc
index 0ccaad381ac7fa1672e58cb5001f32bfb2c86a4d..feaadafd1d384b24225d78d245fa45b00e0f778d 100644
--- a/ash/common/system/tray/tray_popup_utils.cc
+++ b/ash/common/system/tray/tray_popup_utils.cc
@@ -77,9 +77,9 @@ std::unique_ptr<views::LayoutManager> TrayPopupUtils::CreateLayoutManager(
views::Label* TrayPopupUtils::CreateDefaultLabel() {
views::Label* label = new views::Label();
label->SetHorizontalAlignment(gfx::ALIGN_LEFT);
- label->SetBorder(
- views::Border::CreateEmptyBorder(0, kTrayPopupLabelHorizontalPadding, 0,
- kTrayPopupLabelHorizontalPadding));
+ label->SetBorder(views::CreateEmptyBorder(0, kTrayPopupLabelHorizontalPadding,
+ 0,
+ kTrayPopupLabelHorizontalPadding));
// TODO(bruthig): Fix this so that |label| uses the kBackgroundColor to
// perform subpixel rendering instead of disabling subpixel rendering.
« no previous file with comments | « ash/common/system/tray/tray_details_view.cc ('k') | ash/common/system/tray/tray_utils.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698