| Index: ash/launcher/overflow_button.h
|
| diff --git a/ash/launcher/overflow_button.h b/ash/launcher/overflow_button.h
|
| index b1d2db1dbcc358fa2f1911b9a2e0c22ae38c7768..0b225aaa29ef499051248743a73ed5e6e22447ab 100644
|
| --- a/ash/launcher/overflow_button.h
|
| +++ b/ash/launcher/overflow_button.h
|
| @@ -8,12 +8,9 @@
|
| #include "ash/shelf/shelf_types.h"
|
| #include "base/basictypes.h"
|
| #include "base/compiler_specific.h"
|
| +#include "ui/gfx/image/image_skia.h"
|
| #include "ui/views/controls/button/custom_button.h"
|
|
|
| -namespace gfx {
|
| -class ImageSkia;
|
| -}
|
| -
|
| namespace ash {
|
| namespace internal {
|
|
|
| @@ -31,7 +28,12 @@ class OverflowButton : public views::CustomButton {
|
| // views::View overrides:
|
| virtual void OnPaint(gfx::Canvas* canvas) OVERRIDE;
|
|
|
| - const gfx::ImageSkia* image_;
|
| + // Left and right images are rotations of bottom_image and are
|
| + // owned by the overflow button.
|
| + gfx::ImageSkia left_image_;
|
| + gfx::ImageSkia right_image_;
|
| + // Bottom image is owned by the resource bundle.
|
| + const gfx::ImageSkia* bottom_image_;
|
|
|
| DISALLOW_COPY_AND_ASSIGN(OverflowButton);
|
| };
|
|
|