diff options
author | msw@chromium.org <msw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-11-07 17:37:36 +0000 |
---|---|---|
committer | msw@chromium.org <msw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-11-07 17:37:36 +0000 |
commit | cc563f0e83d20a0eb740fbb61361f5c615223756 (patch) | |
tree | 225b866b5bf3d641e37bf92af10a0fe532c63ff2 /ash/launcher | |
parent | a50563969a36701077cb226ff81c9a66230bfae9 (diff) | |
download | chromium_src-cc563f0e83d20a0eb740fbb61361f5c615223756.zip chromium_src-cc563f0e83d20a0eb740fbb61361f5c615223756.tar.gz chromium_src-cc563f0e83d20a0eb740fbb61361f5c615223756.tar.bz2 |
Replace Label::Alignment with gfx::HorizontalAlignment.
Also remove unnecessary center alignment specifications in:
ash/wm/maximize_bubble_controller.cc
chrome/browser/ui/views/find_bar_view.cc
chrome/browser/ui/views/panels/panel_frame_view.cc
chrome/browser/ui/views/speech_recognition_bubble_views.cc
ui/message_center/message_center_bubble.cc
BUG=90426,155526
TEST=No behavioral changes.
R=sky@chromium.org
Review URL: https://chromiumcodereview.appspot.com/11377005
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@166462 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ash/launcher')
-rw-r--r-- | ash/launcher/launcher_tooltip_manager.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ash/launcher/launcher_tooltip_manager.cc b/ash/launcher/launcher_tooltip_manager.cc index 3d4279a..f403a8c 100644 --- a/ash/launcher/launcher_tooltip_manager.cc +++ b/ash/launcher/launcher_tooltip_manager.cc @@ -101,7 +101,7 @@ LauncherTooltipManager::LauncherTooltipBubble::LauncherTooltipBubble( root_window, ash::internal::kShellWindowId_SettingBubbleContainer)); } label_ = new views::Label; - label_->SetHorizontalAlignment(views::Label::ALIGN_LEFT); + label_->SetHorizontalAlignment(gfx::ALIGN_LEFT); label_->SetEnabledColor(kTooltipTextColor); label_->SetElideBehavior(views::Label::ELIDE_AT_END); AddChildView(label_); |