| 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 baa1b13382970de78dc8079803885eee1d52639b..ec12345a5ed4b922a61fdbbec6a18ea3f3130757 100644
|
| --- a/chrome/browser/ui/views/profiles/profile_chooser_view.cc
|
| +++ b/chrome/browser/ui/views/profiles/profile_chooser_view.cc
|
| @@ -472,11 +472,11 @@ class EditableProfilePhoto : public views::LabelButton {
|
| gfx::Point center_point = bounds.CenterPoint() + badge_offset_vector;
|
|
|
| // Paint the circular background.
|
| - cc::PaintFlags paint;
|
| - paint.setAntiAlias(true);
|
| - paint.setColor(GetNativeTheme()->GetSystemColor(
|
| + cc::PaintFlags flags;
|
| + flags.setAntiAlias(true);
|
| + flags.setColor(GetNativeTheme()->GetSystemColor(
|
| ui::NativeTheme::kColorId_BubbleBackground));
|
| - canvas->DrawCircle(center_point, GetProfileBadgeSize() / 2, paint);
|
| + canvas->DrawCircle(center_point, GetProfileBadgeSize() / 2, flags);
|
|
|
| gfx::VectorIconId icon_id;
|
| int icon_size;
|
| @@ -489,10 +489,10 @@ class EditableProfilePhoto : public views::LabelButton {
|
| icon_color = gfx::kChromeIconGrey;
|
| } else {
|
| // Paint the light blue circle.
|
| - paint.setColor(SkColorSetRGB(0xaf, 0xd9, 0xfc));
|
| + flags.setColor(SkColorSetRGB(0xaf, 0xd9, 0xfc));
|
| canvas->DrawCircle(
|
| center_point, GetProfileBadgeSize() / 2 - kProfileBadgeWhitePadding,
|
| - paint);
|
| + flags);
|
|
|
| icon_id = profile_->IsChild()
|
| ? gfx::VectorIconId::ACCOUNT_CHILD
|
|
|