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

Unified Diff: cc/resources/clip_path_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/clip_path_display_item.h ('k') | cc/resources/compositing_display_item.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/resources/clip_path_display_item.cc
diff --git a/cc/resources/clip_path_display_item.cc b/cc/resources/clip_path_display_item.cc
deleted file mode 100644
index 275a7effd7b16d808835b7c1fe335bbb06e5f30e..0000000000000000000000000000000000000000
--- a/cc/resources/clip_path_display_item.cc
+++ /dev/null
@@ -1,75 +0,0 @@
-// Copyright 2015 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/clip_path_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 {
-
-ClipPathDisplayItem::ClipPathDisplayItem(const SkPath& clip_path,
- SkRegion::Op clip_op,
- bool antialias)
- : clip_path_(clip_path), clip_op_(clip_op), antialias_(antialias) {
-}
-
-ClipPathDisplayItem::~ClipPathDisplayItem() {
-}
-
-void ClipPathDisplayItem::Raster(SkCanvas* canvas,
- SkDrawPictureCallback* callback) const {
- canvas->save();
- canvas->clipPath(clip_path_, clip_op_, antialias_);
-}
-
-bool ClipPathDisplayItem::IsSuitableForGpuRasterization() const {
- return true;
-}
-
-int ClipPathDisplayItem::ApproximateOpCount() const {
- return 1;
-}
-
-size_t ClipPathDisplayItem::PictureMemoryUsage() const {
- size_t total_size = sizeof(SkPath) + sizeof(SkRegion::Op) + sizeof(bool);
- return total_size;
-}
-
-void ClipPathDisplayItem::AsValueInto(
- base::trace_event::TracedValue* array) const {
- array->AppendString(base::StringPrintf("ClipPathDisplayItem length: %d",
- clip_path_.countPoints()));
-}
-
-EndClipPathDisplayItem::EndClipPathDisplayItem() {
-}
-
-EndClipPathDisplayItem::~EndClipPathDisplayItem() {
-}
-
-void EndClipPathDisplayItem::Raster(SkCanvas* canvas,
- SkDrawPictureCallback* callback) const {
- canvas->restore();
-}
-
-bool EndClipPathDisplayItem::IsSuitableForGpuRasterization() const {
- return true;
-}
-
-int EndClipPathDisplayItem::ApproximateOpCount() const {
- return 0;
-}
-
-size_t EndClipPathDisplayItem::PictureMemoryUsage() const {
- return 0;
-}
-
-void EndClipPathDisplayItem::AsValueInto(
- base::trace_event::TracedValue* array) const {
- array->AppendString("EndClipPathDisplayItem");
-}
-
-} // namespace cc
« no previous file with comments | « cc/resources/clip_path_display_item.h ('k') | cc/resources/compositing_display_item.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698