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

Unified Diff: chrome/browser/ui/views/edit_search_engine_dialog.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
Index: chrome/browser/ui/views/edit_search_engine_dialog.cc
diff --git a/chrome/browser/ui/views/edit_search_engine_dialog.cc b/chrome/browser/ui/views/edit_search_engine_dialog.cc
index b1c7452db048a156f41be55bae62ed408b192d58..b5bbe59a9417a5718b1a046c8324de26b0647394 100644
--- a/chrome/browser/ui/views/edit_search_engine_dialog.cc
+++ b/chrome/browser/ui/views/edit_search_engine_dialog.cc
@@ -212,7 +212,7 @@ void EditSearchEngineDialog::Init() {
}
views::Label* description_label = new views::Label(description);
- description_label->SetHorizontalAlignment(views::Label::ALIGN_LEFT);
+ description_label->SetHorizontalAlignment(gfx::ALIGN_LEFT);
layout->AddView(description_label);
layout->AddPaddingRow(0, related_y);
@@ -221,7 +221,7 @@ void EditSearchEngineDialog::Init() {
views::Label* EditSearchEngineDialog::CreateLabel(int message_id) {
views::Label* label =
new views::Label(l10n_util::GetStringUTF16(message_id));
- label->SetHorizontalAlignment(views::Label::ALIGN_LEFT);
+ label->SetHorizontalAlignment(gfx::ALIGN_LEFT);
return label;
}
« no previous file with comments | « chrome/browser/ui/views/download/download_item_view.cc ('k') | chrome/browser/ui/views/extensions/bundle_installed_bubble.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698