| Index: ui/app_list/drop_shadow_label.cc
|
| diff --git a/ui/app_list/drop_shadow_label.cc b/ui/app_list/drop_shadow_label.cc
|
| index 64cffbb733db7b3aa6671dff5d0175d25d9b634d..3c876c3c0b60dbec377e7fd80bf8567bf9578c24 100644
|
| --- a/ui/app_list/drop_shadow_label.cc
|
| +++ b/ui/app_list/drop_shadow_label.cc
|
| @@ -4,14 +4,8 @@
|
|
|
| #include "ui/app_list/drop_shadow_label.h"
|
|
|
| -#include "base/utf_string_conversions.h"
|
| -#include "third_party/skia/include/effects/SkGradientShader.h"
|
| #include "ui/gfx/canvas.h"
|
| -#include "ui/gfx/color_utils.h"
|
| #include "ui/gfx/insets.h"
|
| -#include "ui/gfx/skbitmap_operations.h"
|
| -
|
| -using views::Label;
|
|
|
| namespace app_list {
|
|
|
| @@ -54,8 +48,8 @@ void DropShadowLabel::PaintText(gfx::Canvas* canvas,
|
|
|
| if (HasFocus() || paint_as_focused()) {
|
| gfx::Rect focus_bounds = text_bounds;
|
| - focus_bounds.Inset(-Label::kFocusBorderPadding,
|
| - -Label::kFocusBorderPadding);
|
| + focus_bounds.Inset(-views::Label::kFocusBorderPadding,
|
| + -views::Label::kFocusBorderPadding);
|
| canvas->DrawFocusRect(focus_bounds);
|
| }
|
| }
|
|
|