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

Unified Diff: content/common/cc_messages.cc

Issue 12642010: Implement on demand quad rasterization for PicturePiles. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 9 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
« cc/tile_manager.cc ('K') | « cc/tile_manager.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/common/cc_messages.cc
diff --git a/content/common/cc_messages.cc b/content/common/cc_messages.cc
index 799fa972fa21e987bb458bb347cf381b45111693..7ffa28cbfa7cd8dac4b8d868bcecbf337d17a4d8 100644
--- a/content/common/cc_messages.cc
+++ b/content/common/cc_messages.cc
@@ -336,6 +336,9 @@ void ParamTraits<cc::RenderPass>::Write(
case cc::DrawQuad::YUV_VIDEO_CONTENT:
WriteParam(m, *cc::YUVVideoDrawQuad::MaterialCast(quad));
break;
+ case cc::DrawQuad::PICTURE_CONTENT:
+ NOTREACHED();
Leandro Graciá Gil 2013/03/13 20:30:38 Cannot write or read PictureDrawQuads because they
+ break;
case cc::DrawQuad::INVALID:
break;
}
@@ -450,6 +453,9 @@ bool ParamTraits<cc::RenderPass>::Read(
case cc::DrawQuad::YUV_VIDEO_CONTENT:
draw_quad = ReadDrawQuad<cc::YUVVideoDrawQuad>(m, iter);
break;
+ case cc::DrawQuad::PICTURE_CONTENT:
+ NOTREACHED();
piman 2013/03/15 03:51:57 drive-by: Not NOTREACHED since a compromized rende
Leandro Graciá Gil 2013/03/19 17:30:07 Done.
+ break;
case cc::DrawQuad::INVALID:
break;
}
@@ -529,6 +535,9 @@ void ParamTraits<cc::RenderPass>::Log(
case cc::DrawQuad::YUV_VIDEO_CONTENT:
LogParam(*cc::YUVVideoDrawQuad::MaterialCast(quad), l);
break;
+ case cc::DrawQuad::PICTURE_CONTENT:
+ NOTREACHED();
+ break;
case cc::DrawQuad::INVALID:
break;
}
« cc/tile_manager.cc ('K') | « cc/tile_manager.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698