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

Unified Diff: cc/quads/largest_draw_quad.h

Issue 448133002: Remove unused RenderPassDrawQuad fields (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rpdqdamage: addmissingfile Created 6 years, 4 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
Index: cc/quads/largest_draw_quad.h
diff --git a/cc/quads/largest_draw_quad.h b/cc/quads/largest_draw_quad.h
new file mode 100644
index 0000000000000000000000000000000000000000..2dc0dc94ebd603beae9f887bbd35277ea5b14219
--- /dev/null
+++ b/cc/quads/largest_draw_quad.h
@@ -0,0 +1,20 @@
+// Copyright 2014 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef CC_QUADS_LARGEST_DRAW_QUAD_H_
+#define CC_QUADS_LARGEST_DRAW_QUAD_H_
+
+namespace cc {
+class PictureDrawQuad;
+class RenderPassDrawQuad;
+
+#ifdef __LP64__
+typedef RenderPassDrawQuad kLargestDrawQuad;
+#else
+typedef PictureDrawQuad kLargestDrawQuad;
+#endif
+
+} // namespace cc
+
+#endif // CC_QUADS_LARGEST_DRAW_QUAD_H_

Powered by Google App Engine
This is Rietveld 408576698