| Index: chrome/browser/chromeos/extensions/wallpaper_function_base.h
|
| diff --git a/chrome/browser/chromeos/extensions/wallpaper_function_base.h b/chrome/browser/chromeos/extensions/wallpaper_function_base.h
|
| index 5cc99762f4540fe0de6ca2a17a4709d768b087a9..97c1691d73d4fceea28958d866ef54996243c72e 100644
|
| --- a/chrome/browser/chromeos/extensions/wallpaper_function_base.h
|
| +++ b/chrome/browser/chromeos/extensions/wallpaper_function_base.h
|
| @@ -5,6 +5,9 @@
|
| #ifndef CHROME_BROWSER_CHROMEOS_EXTENSIONS_WALLPAPER_FUNCTION_BASE_H_
|
| #define CHROME_BROWSER_CHROMEOS_EXTENSIONS_WALLPAPER_FUNCTION_BASE_H_
|
|
|
| +#include <string>
|
| +#include <vector>
|
| +
|
| #include "ash/desktop_background/desktop_background_controller.h"
|
| #include "components/wallpaper/wallpaper_layout.h"
|
| #include "extensions/browser/extension_function.h"
|
| @@ -31,7 +34,7 @@ class WallpaperFunctionBase : public AsyncExtensionFunction {
|
| static UnsafeWallpaperDecoder* unsafe_wallpaper_decoder_;
|
|
|
| // Starts to decode |data|. Must run on UI thread.
|
| - void StartDecode(const std::string& data);
|
| + void StartDecode(const std::vector<char>& data);
|
|
|
| // Handles cancel case. No error message should be set.
|
| void OnCancel();
|
|
|