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

Unified Diff: chrome/browser/ui/views/importer/import_progress_dialog_view.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/importer/import_progress_dialog_view.cc
diff --git a/chrome/browser/ui/views/importer/import_progress_dialog_view.cc b/chrome/browser/ui/views/importer/import_progress_dialog_view.cc
index 96623d76fc9e980b80617f5a20059785938c77c3..148602b89b3e987a6b176f93860b0afd30767d2d 100644
--- a/chrome/browser/ui/views/importer/import_progress_dialog_view.cc
+++ b/chrome/browser/ui/views/importer/import_progress_dialog_view.cc
@@ -48,12 +48,12 @@ ImportProgressDialogView::ImportProgressDialogView(
l10n_util::GetStringFUTF16(IDS_IMPORT_PROGRESS_INFO, importer_name);
label_info_ = new views::Label(info_text);
label_info_->SetMultiLine(true);
- label_info_->SetHorizontalAlignment(views::Label::ALIGN_LEFT);
- label_bookmarks_->SetHorizontalAlignment(views::Label::ALIGN_LEFT);
- label_searches_->SetHorizontalAlignment(views::Label::ALIGN_LEFT);
- label_passwords_->SetHorizontalAlignment(views::Label::ALIGN_LEFT);
- label_history_->SetHorizontalAlignment(views::Label::ALIGN_LEFT);
- label_cookies_->SetHorizontalAlignment(views::Label::ALIGN_LEFT);
+ label_info_->SetHorizontalAlignment(gfx::ALIGN_LEFT);
+ label_bookmarks_->SetHorizontalAlignment(gfx::ALIGN_LEFT);
+ label_searches_->SetHorizontalAlignment(gfx::ALIGN_LEFT);
+ label_passwords_->SetHorizontalAlignment(gfx::ALIGN_LEFT);
+ label_history_->SetHorizontalAlignment(gfx::ALIGN_LEFT);
+ label_cookies_->SetHorizontalAlignment(gfx::ALIGN_LEFT);
importer_host_->SetObserver(this);
« no previous file with comments | « chrome/browser/ui/views/importer/import_lock_dialog_view.cc ('k') | chrome/browser/ui/views/infobars/infobar_view.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698