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

Unified Diff: cc/CCLayerImpl.cpp

Issue 10947047: Fix remaining cc files to compile with Clang (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix FakeCCDelayBasedTimeSource Created 8 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 | « cc/CCLayerImpl.h ('k') | cc/CCLayerTilingData.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/CCLayerImpl.cpp
diff --git a/cc/CCLayerImpl.cpp b/cc/CCLayerImpl.cpp
index a78453d4883323cc991963c508d6f43a91ac2caa..84597c54649318e9c607bceb64ee36ad76909963 100644
--- a/cc/CCLayerImpl.cpp
+++ b/cc/CCLayerImpl.cpp
@@ -153,6 +153,21 @@ void CCLayerImpl::appendDebugBorderQuad(CCQuadSink& quadList, const CCSharedQuad
quadList.append(CCDebugBorderDrawQuad::create(sharedQuadState, contentRect, debugBorderColor(), debugBorderWidth()), appendQuadsData);
}
+bool CCLayerImpl::hasContributingDelegatedRenderPasses() const
+{
+ return false;
+}
+
+CCRenderPass::Id CCLayerImpl::firstContributingRenderPassId() const
+{
+ return CCRenderPass::Id(0, 0);
+}
+
+CCRenderPass::Id CCLayerImpl::nextContributingRenderPassId(CCRenderPass::Id) const
+{
+ return CCRenderPass::Id(0, 0);
+}
+
CCResourceProvider::ResourceId CCLayerImpl::contentsResourceId() const
{
ASSERT_NOT_REACHED();
« no previous file with comments | « cc/CCLayerImpl.h ('k') | cc/CCLayerTilingData.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698