| 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 6fa564c80ed6cf52220c34dac82c0389ce3cc1ed..3dd59cd1e489479e0b34de685252ef6a04d5d2a3 100644
|
| --- a/chrome/browser/ui/views/location_bar/location_bar_view.cc
|
| +++ b/chrome/browser/ui/views/location_bar/location_bar_view.cc
|
| @@ -1137,11 +1137,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));
|
|
|