| 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 8da679cdc3e653b5322286e0b9fb75fb23930088..0a54c29aab196cf13f004a5d5d8f74a30c02c333 100644
|
| --- a/chrome/browser/ui/views/location_bar/location_bar_view.cc
|
| +++ b/chrome/browser/ui/views/location_bar/location_bar_view.cc
|
| @@ -1132,11 +1132,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));
|
|
|