| Index: chrome/browser/ui/ash/chrome_wallpaper_manager.h
|
| diff --git a/chrome/browser/ui/ash/chrome_wallpaper_manager.h b/chrome/browser/ui/ash/chrome_wallpaper_manager.h
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..8e3d6b403bd1fcdf19047a793ba1b943d7a46350
|
| --- /dev/null
|
| +++ b/chrome/browser/ui/ash/chrome_wallpaper_manager.h
|
| @@ -0,0 +1,28 @@
|
| +// Copyright 2016 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.
|
| +
|
| +#ifndef CHROME_BROWSER_UI_ASH_CHROME_WALLPAPER_MANAGER_H_
|
| +#define CHROME_BROWSER_UI_ASH_CHROME_WALLPAPER_MANAGER_H_
|
| +
|
| +#include "ash/mus/public/interfaces/wallpaper.mojom.h"
|
| +#include "mojo/public/cpp/bindings/binding_set.h"
|
| +
|
| +// ChromeWallpaperManager exposes chrome wallpaper functionality to ash_sysui.
|
| +class ChromeWallpaperManager : public ash::mus::mojom::WallpaperManager {
|
| + public:
|
| + ChromeWallpaperManager();
|
| + ~ChromeWallpaperManager() override;
|
| +
|
| + void ProcessRequest(ash::mus::mojom::WallpaperManagerRequest request);
|
| +
|
| + private:
|
| + // ash::mus::mojom::WallpaperManager:
|
| + void OpenWallpaperManager() override;
|
| +
|
| + mojo::BindingSet<ash::mus::mojom::WallpaperManager> bindings_;
|
| +
|
| + DISALLOW_COPY_AND_ASSIGN(ChromeWallpaperManager);
|
| +};
|
| +
|
| +#endif // CHROME_BROWSER_UI_ASH_CHROME_WALLPAPER_MANAGER_H_
|
|
|