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

Unified Diff: cc/CCCheckerboardDrawQuad.cpp

Issue 11122003: [cc] Rename all cc/ filenames to Chromium style (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: 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/CCCheckerboardDrawQuad.h ('k') | cc/CCCompletionEvent.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/CCCheckerboardDrawQuad.cpp
diff --git a/cc/CCCheckerboardDrawQuad.cpp b/cc/CCCheckerboardDrawQuad.cpp
deleted file mode 100644
index f1b34a3de842359f624309a5b6aa7f67024fc49a..0000000000000000000000000000000000000000
--- a/cc/CCCheckerboardDrawQuad.cpp
+++ /dev/null
@@ -1,28 +0,0 @@
-// Copyright 2012 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.
-
-#include "config.h"
-
-#include "CCCheckerboardDrawQuad.h"
-
-namespace cc {
-
-scoped_ptr<CCCheckerboardDrawQuad> CCCheckerboardDrawQuad::create(const CCSharedQuadState* sharedQuadState, const IntRect& quadRect, SkColor color)
-{
- return make_scoped_ptr(new CCCheckerboardDrawQuad(sharedQuadState, quadRect, color));
-}
-
-CCCheckerboardDrawQuad::CCCheckerboardDrawQuad(const CCSharedQuadState* sharedQuadState, const IntRect& quadRect, SkColor color)
- : CCDrawQuad(sharedQuadState, CCDrawQuad::Checkerboard, quadRect)
- , m_color(color)
-{
-}
-
-const CCCheckerboardDrawQuad* CCCheckerboardDrawQuad::materialCast(const CCDrawQuad* quad)
-{
- ASSERT(quad->material() == CCDrawQuad::Checkerboard);
- return static_cast<const CCCheckerboardDrawQuad*>(quad);
-}
-
-} // namespace cc
« no previous file with comments | « cc/CCCheckerboardDrawQuad.h ('k') | cc/CCCompletionEvent.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698