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

Unified Diff: cc/resources/transparency_display_item.cc

Issue 956813002: Remove unused transparency display items. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 5 years, 10 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/transparency_display_item.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/resources/transparency_display_item.cc
diff --git a/cc/resources/transparency_display_item.cc b/cc/resources/transparency_display_item.cc
deleted file mode 100644
index 1c37b738eecaf1454105029d6363e123d27cfec5..0000000000000000000000000000000000000000
--- a/cc/resources/transparency_display_item.cc
+++ /dev/null
@@ -1,79 +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/transparency_display_item.h"
-
-#include "base/strings/stringprintf.h"
-#include "base/trace_event/trace_event_argument.h"
-#include "third_party/skia/include/core/SkCanvas.h"
-#include "third_party/skia/include/core/SkPaint.h"
-#include "third_party/skia/include/core/SkXfermode.h"
-#include "ui/gfx/skia_util.h"
-
-namespace cc {
-
-TransparencyDisplayItem::TransparencyDisplayItem(float opacity,
- SkXfermode::Mode blend_mode)
- : opacity_(opacity), blend_mode_(blend_mode) {
-}
-
-TransparencyDisplayItem::~TransparencyDisplayItem() {
-}
-
-void TransparencyDisplayItem::Raster(SkCanvas* canvas,
- SkDrawPictureCallback* callback) const {
- SkPaint paint;
- paint.setXfermodeMode(blend_mode_);
- paint.setAlpha(opacity_ * 255);
- canvas->saveLayer(NULL, &paint);
-}
-
-bool TransparencyDisplayItem::IsSuitableForGpuRasterization() const {
- return true;
-}
-
-int TransparencyDisplayItem::ApproximateOpCount() const {
- return 1;
-}
-
-size_t TransparencyDisplayItem::PictureMemoryUsage() const {
- return sizeof(float) + sizeof(SkXfermode::Mode);
-}
-
-void TransparencyDisplayItem::AsValueInto(
- base::trace_event::TracedValue* array) const {
- array->AppendString(
- base::StringPrintf("TransparencyDisplayItem opacity: %f, blend_mode: %d",
- opacity_, blend_mode_));
-}
-
-EndTransparencyDisplayItem::EndTransparencyDisplayItem() {
-}
-
-EndTransparencyDisplayItem::~EndTransparencyDisplayItem() {
-}
-
-void EndTransparencyDisplayItem::Raster(SkCanvas* canvas,
- SkDrawPictureCallback* callback) const {
- canvas->restore();
-}
-
-bool EndTransparencyDisplayItem::IsSuitableForGpuRasterization() const {
- return true;
-}
-
-int EndTransparencyDisplayItem::ApproximateOpCount() const {
- return 0;
-}
-
-size_t EndTransparencyDisplayItem::PictureMemoryUsage() const {
- return 0;
-}
-
-void EndTransparencyDisplayItem::AsValueInto(
- base::trace_event::TracedValue* array) const {
- array->AppendString("EndTransparencyDisplayItem");
-}
-
-} // namespace cc
« no previous file with comments | « cc/resources/transparency_display_item.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698