Chromium Code Reviews

Unified Diff: ppapi/host/resource_host.cc

Issue 298023004: [PPAPI] Compositor API implementation (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@compositor_api_def_new
Patch Set: Fix review issues and rebase Created 6 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Index: ppapi/host/resource_host.cc
diff --git a/ppapi/host/resource_host.cc b/ppapi/host/resource_host.cc
index b453398e87c1f60f515c58c7467b90bd87ab282c..2d5af581fcf6c390115c4da039705030200c6586 100644
--- a/ppapi/host/resource_host.cc
+++ b/ppapi/host/resource_host.cc
@@ -48,6 +48,10 @@ void ResourceHost::SendReply(const ReplyMessageContext& context,
host_->SendReply(context, msg);
}
+bool ResourceHost::IsCompositorHost() {
+ return false;
+}
+
bool ResourceHost::IsFileRefHost() {
return false;
}

Powered by Google App Engine