summaryrefslogtreecommitdiffstats
path: root/ppapi/host
diff options
context:
space:
mode:
authortzik@chromium.org <tzik@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-06-16 07:21:26 +0000
committertzik@chromium.org <tzik@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-06-16 07:21:26 +0000
commit20068a0582ea4dd0bb1f7d0275315011e8f52439 (patch)
tree1de9c3d394daa058fa48c15cab6a45b9f73f8ace /ppapi/host
parentcadbc71e0b1d1c2e907e3fac183f9ace2304d899 (diff)
downloadchromium_src-20068a0582ea4dd0bb1f7d0275315011e8f52439.zip
chromium_src-20068a0582ea4dd0bb1f7d0275315011e8f52439.tar.gz
chromium_src-20068a0582ea4dd0bb1f7d0275315011e8f52439.tar.bz2
Revert 277208 "[PPAPI] Compositor API implementation."
This CL seems to cause perf bot failure. The log said nacl_helper-data size gained exceeds expectation. http://build.chromium.org/p/chromium/builders/Linux/builds/50560 https://chromeperf.appspot.com/report?masters=Chromium&bots=chromium-rel-linux&tests=sizes%2Fnacl_helper-data&rev=277212&checked=core > [PPAPI] Compositor API implementation. > > Implement the compositor API which allows a plugin to combine different sources of visual data efficiently, such as PPB_ImageData and OpengGL texture. > > API Proposal http://goo.gl/V7xcu3 > > BUG=374383 > > Review URL: https://codereview.chromium.org/298023004 TBR=penghuang@chromium.org Review URL: https://codereview.chromium.org/331123003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@277372 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ppapi/host')
-rw-r--r--ppapi/host/resource_host.cc4
-rw-r--r--ppapi/host/resource_host.h1
2 files changed, 0 insertions, 5 deletions
diff --git a/ppapi/host/resource_host.cc b/ppapi/host/resource_host.cc
index 2d5af58..b453398 100644
--- a/ppapi/host/resource_host.cc
+++ b/ppapi/host/resource_host.cc
@@ -48,10 +48,6 @@ void ResourceHost::SendReply(const ReplyMessageContext& context,
host_->SendReply(context, msg);
}
-bool ResourceHost::IsCompositorHost() {
- return false;
-}
-
bool ResourceHost::IsFileRefHost() {
return false;
}
diff --git a/ppapi/host/resource_host.h b/ppapi/host/resource_host.h
index a2d3885..a9518ee 100644
--- a/ppapi/host/resource_host.h
+++ b/ppapi/host/resource_host.h
@@ -56,7 +56,6 @@ class PPAPI_HOST_EXPORT ResourceHost : public ResourceMessageHandler {
// Simple RTTI. A subclass that is a host for one of these APIs will override
// the appropriate function and return true.
- virtual bool IsCompositorHost();
virtual bool IsFileRefHost();
virtual bool IsFileSystemHost();
virtual bool IsGraphics2DHost();