| OLD | NEW |
| (Empty) | |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #ifndef CHROME_BROWSER_CHROMEOS_ARC_ARC_WALLPAPER_HANDLER_H_ |
| 6 #define CHROME_BROWSER_CHROMEOS_ARC_ARC_WALLPAPER_HANDLER_H_ |
| 7 |
| 8 #include "base/macros.h" |
| 9 #include "components/arc/set_wallpaper_delegate.h" |
| 10 |
| 11 namespace arc { |
| 12 |
| 13 class ArcWallpaperHandler : public SetWallpaperDelegate { |
| 14 public: |
| 15 ArcWallpaperHandler() = default; |
| 16 virtual ~ArcWallpaperHandler() = default; |
| 17 |
| 18 // SetWallpaperDelegate implementation. |
| 19 void SetWallpaper(const gfx::ImageSkia& image) override; |
| 20 |
| 21 private: |
| 22 DISALLOW_COPY_AND_ASSIGN(ArcWallpaperHandler); |
| 23 }; |
| 24 |
| 25 } // namespace arc |
| 26 |
| 27 #endif // CHROME_BROWSER_CHROMEOS_ARC_ARC_WALLPAPER_HANDLER_H_ |
| OLD | NEW |