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

Unified Diff: cc/resources/transform_display_item.cc

Issue 1057283003: Remove parts of //cc we aren't using (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 5 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
« no previous file with comments | « cc/resources/transform_display_item.h ('k') | cc/resources/ui_resource_bitmap.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/resources/transform_display_item.cc
diff --git a/cc/resources/transform_display_item.cc b/cc/resources/transform_display_item.cc
deleted file mode 100644
index a25f3478997f7af4cd03a108e6e01501c9721556..0000000000000000000000000000000000000000
--- a/cc/resources/transform_display_item.cc
+++ /dev/null
@@ -1,73 +0,0 @@
-// 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.
-
-#include "cc/resources/transform_display_item.h"
-
-#include "base/strings/stringprintf.h"
-#include "base/trace_event/trace_event_argument.h"
-#include "third_party/skia/include/core/SkCanvas.h"
-
-namespace cc {
-
-TransformDisplayItem::TransformDisplayItem(const gfx::Transform& transform)
- : transform_(transform) {
-}
-
-TransformDisplayItem::~TransformDisplayItem() {
-}
-
-void TransformDisplayItem::Raster(SkCanvas* canvas,
- SkDrawPictureCallback* callback) const {
- canvas->save();
- if (!transform_.IsIdentity())
- canvas->concat(transform_.matrix());
-}
-
-bool TransformDisplayItem::IsSuitableForGpuRasterization() const {
- return true;
-}
-
-int TransformDisplayItem::ApproximateOpCount() const {
- return 1;
-}
-
-size_t TransformDisplayItem::PictureMemoryUsage() const {
- return sizeof(gfx::Transform);
-}
-
-void TransformDisplayItem::AsValueInto(
- base::trace_event::TracedValue* array) const {
- array->AppendString(base::StringPrintf("TransformDisplayItem transform: [%s]",
- transform_.ToString().c_str()));
-}
-
-EndTransformDisplayItem::EndTransformDisplayItem() {
-}
-
-EndTransformDisplayItem::~EndTransformDisplayItem() {
-}
-
-void EndTransformDisplayItem::Raster(SkCanvas* canvas,
- SkDrawPictureCallback* callback) const {
- canvas->restore();
-}
-
-bool EndTransformDisplayItem::IsSuitableForGpuRasterization() const {
- return true;
-}
-
-int EndTransformDisplayItem::ApproximateOpCount() const {
- return 0;
-}
-
-size_t EndTransformDisplayItem::PictureMemoryUsage() const {
- return 0;
-}
-
-void EndTransformDisplayItem::AsValueInto(
- base::trace_event::TracedValue* array) const {
- array->AppendString("EndTransformDisplayItem");
-}
-
-} // namespace cc
« no previous file with comments | « cc/resources/transform_display_item.h ('k') | cc/resources/ui_resource_bitmap.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698