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

Unified Diff: chrome/browser/ui/views/profiles/profile_chooser_view.cc

Issue 457723002: Polish signin confirmation bubble (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix comments Created 6 years, 4 months 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/ui/views/profiles/profile_chooser_view.cc
diff --git a/chrome/browser/ui/views/profiles/profile_chooser_view.cc b/chrome/browser/ui/views/profiles/profile_chooser_view.cc
index a0fa3c118df7596bed657e9ad77df468fbc0a3e1..0ab3fbba1d04c666dba53e91c3fd8732a3d75367 100644
--- a/chrome/browser/ui/views/profiles/profile_chooser_view.cc
+++ b/chrome/browser/ui/views/profiles/profile_chooser_view.cc
@@ -498,8 +498,8 @@ ProfileChooserView::ProfileChooserView(views::View* anchor_view,
tutorial_mode_(profiles::TUTORIAL_MODE_NONE),
gaia_service_type_(service_type) {
// Reset the default margins inherited from the BubbleDelegateView.
- // Add a small top/bottom inset so that the bubble's rounded corners show up.
- set_margins(gfx::Insets(1, 0, 1, 0));
+ // Add a small bottom inset so that the bubble's rounded corners show up.
+ set_margins(gfx::Insets(0, 0, 1, 0));
set_background(views::Background::CreateSolidBackground(
GetNativeTheme()->GetSystemColor(
ui::NativeTheme::kColorId_DialogBackground)));
@@ -932,6 +932,7 @@ views::View* ProfileChooserView::CreateTutorialView(
// Adds title.
views::Label* title_label = new views::Label(title_text);
+ title_label->SetMultiLine(true);
title_label->SetHorizontalAlignment(gfx::ALIGN_LEFT);
title_label->SetAutoColorReadabilityEnabled(false);
title_label->SetEnabledColor(SK_ColorWHITE);
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698