| Index: components/arc/arc_bridge_service.h
|
| diff --git a/components/arc/arc_bridge_service.h b/components/arc/arc_bridge_service.h
|
| index d313b646b4a2eab428f0095f45b34eb69dca3819..3651d6052bfd464d6a4a14f55b76cfcd4a676146 100644
|
| --- a/components/arc/arc_bridge_service.h
|
| +++ b/components/arc/arc_bridge_service.h
|
| @@ -117,6 +117,7 @@ class ArcBridgeService {
|
| }
|
| InstanceHolder<mojom::TtsInstance>* tts() { return &tts_; }
|
| InstanceHolder<mojom::VideoInstance>* video() { return &video_; }
|
| + InstanceHolder<mojom::WallpaperInstance>* wallpaper() { return &wallpaper_; }
|
|
|
| // Gets if ARC is currently running.
|
| bool ready() const { return state() == State::READY; }
|
| @@ -185,6 +186,7 @@ class ArcBridgeService {
|
| InstanceHolder<mojom::StorageManagerInstance> storage_manager_;
|
| InstanceHolder<mojom::TtsInstance> tts_;
|
| InstanceHolder<mojom::VideoInstance> video_;
|
| + InstanceHolder<mojom::WallpaperInstance> wallpaper_;
|
|
|
| // Gets the current state of the bridge service.
|
| State state() const { return state_; }
|
|
|