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

Side by Side Diff: ash/system/tray/tray_utils.cc

Issue 224113005: Eliminate ash::internal namespace (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 8 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « ash/system/tray/tray_utils.h ('k') | ash/system/tray/view_click_listener.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "ash/system/tray/tray_utils.h" 5 #include "ash/system/tray/tray_utils.h"
6 6
7 #include "ash/system/tray/tray_constants.h" 7 #include "ash/system/tray/tray_constants.h"
8 #include "ash/system/tray/tray_item_view.h" 8 #include "ash/system/tray/tray_item_view.h"
9 #include "ui/gfx/font_list.h" 9 #include "ui/gfx/font_list.h"
10 #include "ui/views/border.h" 10 #include "ui/views/border.h"
11 #include "ui/views/controls/label.h" 11 #include "ui/views/controls/label.h"
12 12
13 namespace ash { 13 namespace ash {
14 namespace internal {
15 14
16 void SetupLabelForTray(views::Label* label) { 15 void SetupLabelForTray(views::Label* label) {
17 // Making label_font static to avoid the time penalty of Derive for all but 16 // Making label_font static to avoid the time penalty of Derive for all but
18 // the first call. 17 // the first call.
19 static const gfx::FontList label_font_list( 18 static const gfx::FontList label_font_list(
20 gfx::FontList().Derive(1, gfx::Font::BOLD)); 19 gfx::FontList().Derive(1, gfx::Font::BOLD));
21 label->SetFontList(label_font_list); 20 label->SetFontList(label_font_list);
22 label->SetAutoColorReadabilityEnabled(false); 21 label->SetAutoColorReadabilityEnabled(false);
23 label->SetEnabledColor(SK_ColorWHITE); 22 label->SetEnabledColor(SK_ColorWHITE);
24 label->SetBackgroundColor(SkColorSetARGB(0, 255, 255, 255)); 23 label->SetBackgroundColor(SkColorSetARGB(0, 255, 255, 255));
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
60 (tray_view->GetPreferredSize().width() - 59 (tray_view->GetPreferredSize().width() -
61 tray_view->label()->GetPreferredSize().width()) / 2); 60 tray_view->label()->GetPreferredSize().width()) / 2);
62 tray_view->SetBorder(views::Border::CreateEmptyBorder( 61 tray_view->SetBorder(views::Border::CreateEmptyBorder(
63 kTrayLabelItemVerticalPaddingVerticalAlignment, 62 kTrayLabelItemVerticalPaddingVerticalAlignment,
64 horizontal_padding, 63 horizontal_padding,
65 kTrayLabelItemVerticalPaddingVerticalAlignment, 64 kTrayLabelItemVerticalPaddingVerticalAlignment,
66 horizontal_padding)); 65 horizontal_padding));
67 } 66 }
68 } 67 }
69 68
70 } // namespace internal
71 } // namespace ash 69 } // namespace ash
OLDNEW
« no previous file with comments | « ash/system/tray/tray_utils.h ('k') | ash/system/tray/view_click_listener.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698