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

Unified Diff: cc/CCRenderPass.h

Issue 10915298: Add CCDelegatingRenderer, and corresponding IPCs (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix clang Created 8 years, 2 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/CCQuadCuller.cpp ('k') | cc/CCRenderPassDrawQuad.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/CCRenderPass.h
diff --git a/cc/CCRenderPass.h b/cc/CCRenderPass.h
index cdfa958dd27ea0de44b19ec20780d5eb8e97a231..a1af511224b574a97d969a87f9835a4c31102922 100644
--- a/cc/CCRenderPass.h
+++ b/cc/CCRenderPass.h
@@ -17,6 +17,10 @@
#include <public/WebTransformationMatrix.h>
#include <vector>
+namespace IPC {
+template <class P> struct ParamTraits;
+};
+
namespace cc {
class CCLayerImpl;
@@ -95,7 +99,9 @@ public:
bool hasOcclusionFromOutsideTargetSurface() const { return m_hasOcclusionFromOutsideTargetSurface; }
void setHasOcclusionFromOutsideTargetSurface(bool hasOcclusionFromOutsideTargetSurface) { m_hasOcclusionFromOutsideTargetSurface = hasOcclusionFromOutsideTargetSurface; }
+ const CCSharedQuadStateList& sharedQuadStateList() const { return m_sharedQuadStateList; }
protected:
+ friend struct IPC::ParamTraits<CCRenderPass>;
CCRenderPass(Id, IntRect outputRect, const WebKit::WebTransformationMatrix& transformToRootTarget);
Id m_id;
« no previous file with comments | « cc/CCQuadCuller.cpp ('k') | cc/CCRenderPassDrawQuad.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698