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

Unified Diff: cc/trees/draw_property_utils.h

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/trees/damage_tracker_unittest.cc ('k') | cc/trees/draw_property_utils.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/trees/draw_property_utils.h
diff --git a/cc/trees/draw_property_utils.h b/cc/trees/draw_property_utils.h
deleted file mode 100644
index 78c3c53f508c3b2c8c810b9d9272f51b2ec0b8ca..0000000000000000000000000000000000000000
--- a/cc/trees/draw_property_utils.h
+++ /dev/null
@@ -1,49 +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.
-
-#ifndef CC_TREES_DRAW_PROPERTY_UTILS_H_
-#define CC_TREES_DRAW_PROPERTY_UTILS_H_
-
-#include "cc/base/cc_export.h"
-
-namespace gfx {
-class Rect;
-class Transform;
-} // namespace gfx
-
-namespace cc {
-
-class ClipTree;
-class Layer;
-class OpacityTree;
-class TransformTree;
-
-// Computes combined clips for every node in |clip_tree|. This function requires
-// that |transform_tree| has been updated via |ComputeTransforms|.
-// TODO(vollick): ComputeClips and ComputeTransforms will eventually need to be
-// done on both threads.
-void CC_EXPORT
-ComputeClips(ClipTree* clip_tree, const TransformTree& transform_tree);
-
-// Computes combined (screen space) transforms for every node in the transform
-// tree. This must be done prior to calling |ComputeClips|.
-void CC_EXPORT ComputeTransforms(TransformTree* transform_tree);
-
-// Computes the visible content rect for every layer under |root_layer|. The
-// visible content rect is the clipped content space rect that will be used for
-// recording.
-void CC_EXPORT
-ComputeVisibleRectsUsingPropertyTrees(Layer* root_layer,
- const Layer* page_scale_layer,
- float page_scale_factor,
- float device_scale_factor,
- const gfx::Rect& viewport,
- const gfx::Transform& device_transform,
- TransformTree* transform_tree,
- ClipTree* clip_tree,
- OpacityTree* opacity_tree);
-
-} // namespace cc
-
-#endif // CC_TREES_DRAW_PROPERTY_UTILS_H_
« no previous file with comments | « cc/trees/damage_tracker_unittest.cc ('k') | cc/trees/draw_property_utils.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698