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

Unified Diff: chrome/browser/ui/views/content_setting_bubble_contents.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/content_setting_bubble_contents.cc
diff --git a/chrome/browser/ui/views/content_setting_bubble_contents.cc b/chrome/browser/ui/views/content_setting_bubble_contents.cc
index 52815343636d29618a6e809d754086c34fa6264a..2dac076147778acfb6e4d3931f7f6fc206f86f5d 100644
--- a/chrome/browser/ui/views/content_setting_bubble_contents.cc
+++ b/chrome/browser/ui/views/content_setting_bubble_contents.cc
@@ -231,7 +231,7 @@ void ContentSettingBubbleContents::Init() {
layout->StartRow(0, single_column_set_id);
views::Label* section_title = new views::Label(UTF8ToUTF16(i->title));
section_title->SetMultiLine(true);
- section_title->SetHorizontalAlignment(views::Label::ALIGN_LEFT);
+ section_title->SetHorizontalAlignment(gfx::ALIGN_LEFT);
layout->AddView(section_title, 1, 1, GridLayout::FILL, GridLayout::LEADING);
for (std::set<std::string>::const_iterator j = i->hosts.begin();
j != i->hosts.end(); ++j) {

Powered by Google App Engine
This is Rietveld 408576698