| Index: chrome/browser/ui/views/location_bar/location_bar_view.cc
|
| diff --git a/chrome/browser/ui/views/location_bar/location_bar_view.cc b/chrome/browser/ui/views/location_bar/location_bar_view.cc
|
| index 8b2f203894941edf7a6099d5daad66605696b647..72a1fe6b290d556071d9e3b5e57b11cc41d71535 100644
|
| --- a/chrome/browser/ui/views/location_bar/location_bar_view.cc
|
| +++ b/chrome/browser/ui/views/location_bar/location_bar_view.cc
|
| @@ -1133,11 +1133,11 @@ void LocationBarView::OnPaint(gfx::Canvas* canvas) {
|
| View::OnPaint(canvas);
|
|
|
| if (show_focus_rect_ && omnibox_view_->HasFocus()) {
|
| - SkPaint paint;
|
| + cc::PaintFlags paint;
|
| paint.setAntiAlias(true);
|
| paint.setColor(GetNativeTheme()->GetSystemColor(
|
| ui::NativeTheme::NativeTheme::kColorId_FocusedBorderColor));
|
| - paint.setStyle(SkPaint::kStroke_Style);
|
| + paint.setStyle(cc::PaintFlags::kStroke_Style);
|
| paint.setStrokeWidth(1);
|
| gfx::RectF focus_rect(GetLocalBounds());
|
| focus_rect.Inset(gfx::InsetsF(0.5f));
|
|
|