Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(25)

Unified Diff: components/arc/arc_bridge_host_impl.cc

Issue 2264743002: cheets: implement cros side of WallpaperManagerService. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: change instance getter / setter in SetWallpaperDelegate to snake_case. Created 4 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « components/arc/arc_bridge_host_impl.h ('k') | components/arc/arc_bridge_service.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/arc/arc_bridge_host_impl.cc
diff --git a/components/arc/arc_bridge_host_impl.cc b/components/arc/arc_bridge_host_impl.cc
index c113d341b1360d84bd14573391cd12d8695743d3..6db6272de2e62c9bddcdba80373abcdbda2dae59 100644
--- a/components/arc/arc_bridge_host_impl.cc
+++ b/components/arc/arc_bridge_host_impl.cc
@@ -188,6 +188,12 @@ void ArcBridgeHostImpl::OnVideoInstanceReady(
OnInstanceReady(ArcBridgeService::Get()->video(), std::move(video_ptr));
}
+void ArcBridgeHostImpl::OnWallpaperInstanceReady(
+ mojom::WallpaperInstancePtr wallpaper_ptr) {
+ OnInstanceReady(ArcBridgeService::Get()->wallpaper(),
+ std::move(wallpaper_ptr));
+}
+
void ArcBridgeHostImpl::OnClosed() {
DCHECK(thread_checker_.CalledOnValidThread());
VLOG(1) << "Mojo connection lost";
« no previous file with comments | « components/arc/arc_bridge_host_impl.h ('k') | components/arc/arc_bridge_service.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698