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

Unified Diff: ui/views/focus/focus_traversal_unittest.cc

Issue 11377005: Replace Label::Alignment with gfx::HorizontalAlignment (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix remaining Label::Alignment references. Created 8 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 | « ui/views/examples/label_example.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/views/focus/focus_traversal_unittest.cc
diff --git a/ui/views/focus/focus_traversal_unittest.cc b/ui/views/focus/focus_traversal_unittest.cc
index 471f7aa80cc4212992708fbfe2f8f818c8eae167..c110b21f266ab2ccd7f178a910f3cb175d9fd679 100644
--- a/ui/views/focus/focus_traversal_unittest.cc
+++ b/ui/views/focus/focus_traversal_unittest.cc
@@ -456,7 +456,7 @@ void FocusTraversalTest::InitContentView() {
y = 5;
for (size_t i = 0; i < arraysize(kTitles); ++i) {
Link* link = new Link(ASCIIToUTF16(kTitles[i]));
- link->SetHorizontalAlignment(Label::ALIGN_LEFT);
+ link->SetHorizontalAlignment(gfx::ALIGN_LEFT);
link->set_id(kIDs[i]);
scroll_content->AddChildView(link);
link->SetBounds(5, y, 300, 15);
@@ -538,7 +538,7 @@ void FocusTraversalTest::InitContentView() {
button->set_id(kSearchButtonID);
link = new Link(ASCIIToUTF16("Help"));
- link->SetHorizontalAlignment(Label::ALIGN_LEFT);
+ link->SetHorizontalAlignment(gfx::ALIGN_LEFT);
link->set_id(kHelpLinkID);
contents->AddChildView(link);
link->SetBounds(175, 10, 30, 20);
« no previous file with comments | « ui/views/examples/label_example.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698