diff options
Diffstat (limited to 'ui/views/controls/menu/menu_image_util.h')
| -rw-r--r-- | ui/views/controls/menu/menu_image_util.h | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/ui/views/controls/menu/menu_image_util.h b/ui/views/controls/menu/menu_image_util.h index 7d98035..5e1062c 100644 --- a/ui/views/controls/menu/menu_image_util.h +++ b/ui/views/controls/menu/menu_image_util.h @@ -1,4 +1,4 @@ -// Copyright (c) 2011 The Chromium Authors. All rights reserved. +// Copyright (c) 2012 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. @@ -6,7 +6,9 @@ #define UI_VIEWS_CONTROLS_MENU_MENU_IMAGE_UTIL_H_ #pragma once -#include "third_party/skia/include/core/SkBitmap.h" +namespace gfx { +class ImageSkia; +} namespace views { @@ -14,10 +16,10 @@ namespace views { // It returns the "selected" image when |selected| is // true, or the "unselected" image if false. // The returned image is global object and should not be freed. -const SkBitmap* GetRadioButtonImage(bool selected); +const gfx::ImageSkia* GetRadioButtonImage(bool selected); // Returns the image for submenu arrow for current RTL setting. -const SkBitmap* GetSubmenuArrowImage(); +const gfx::ImageSkia* GetSubmenuArrowImage(); } // namespace views |
