| Index: ui/native_theme/common_theme.h
|
| diff --git a/ui/native_theme/common_theme.h b/ui/native_theme/common_theme.h
|
| index 48edf85561f18c81e7580cdf9c93ee16f123895b..9a10f8ad04d21e906fc2d692febbf8ceb197cab7 100644
|
| --- a/ui/native_theme/common_theme.h
|
| +++ b/ui/native_theme/common_theme.h
|
| @@ -5,7 +5,8 @@
|
| #ifndef UI_NATIVE_THEME_COMMON_THEME_H_
|
| #define UI_NATIVE_THEME_COMMON_THEME_H_
|
|
|
| -#include "base/memory/scoped_ptr.h"
|
| +#include <memory>
|
| +
|
| #include "ui/native_theme/native_theme.h"
|
|
|
| class SkCanvas;
|
| @@ -32,8 +33,8 @@ void NATIVE_THEME_EXPORT CommonThemePaintMenuItemBackground(
|
| const NativeTheme::MenuItemExtraParams& menu_item);
|
|
|
| // Creates a gfx::Canvas wrapping an SkCanvas.
|
| -scoped_ptr<gfx::Canvas> NATIVE_THEME_EXPORT CommonThemeCreateCanvas(
|
| - SkCanvas* sk_canvas);
|
| +std::unique_ptr<gfx::Canvas> NATIVE_THEME_EXPORT
|
| +CommonThemeCreateCanvas(SkCanvas* sk_canvas);
|
|
|
| } // namespace ui
|
|
|
|
|