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

Unified Diff: cc/trees/tree_synchronizer.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/thread_proxy.cc ('k') | cc/trees/tree_synchronizer.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/trees/tree_synchronizer.h
diff --git a/cc/trees/tree_synchronizer.h b/cc/trees/tree_synchronizer.h
deleted file mode 100644
index e7b2e2bdedab17d6bee7b1d980668ece2b0ab94e..0000000000000000000000000000000000000000
--- a/cc/trees/tree_synchronizer.h
+++ /dev/null
@@ -1,52 +0,0 @@
-// Copyright 2011 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_TREE_SYNCHRONIZER_H_
-#define CC_TREES_TREE_SYNCHRONIZER_H_
-
-#include "base/basictypes.h"
-#include "base/memory/scoped_ptr.h"
-#include "cc/base/cc_export.h"
-
-namespace cc {
-
-class LayerImpl;
-class LayerTreeImpl;
-class Layer;
-
-class CC_EXPORT TreeSynchronizer {
- public:
- // Accepts a Layer tree and returns a reference to a LayerImpl tree that
- // duplicates the structure of the Layer tree, reusing the LayerImpls in the
- // tree provided by old_layer_impl_root if possible.
- static scoped_ptr<LayerImpl> SynchronizeTrees(
- Layer* layer_root,
- scoped_ptr<LayerImpl> old_layer_impl_root,
- LayerTreeImpl* tree_impl);
- static scoped_ptr<LayerImpl> SynchronizeTrees(
- LayerImpl* layer_root,
- scoped_ptr<LayerImpl> old_layer_impl_root,
- LayerTreeImpl* tree_impl);
-
- // Pushes properties from a Layer or LayerImpl tree to a structurally
- // equivalent LayerImpl tree.
- static void PushProperties(Layer* layer_root,
- LayerImpl* layer_impl_root);
- static void PushProperties(LayerImpl* layer_root, LayerImpl* layer_impl_root);
-
- private:
- TreeSynchronizer(); // Not instantiable.
-
- template <typename LayerType>
- static void PushPropertiesInternal(
- LayerType* layer,
- LayerImpl* layer_impl,
- size_t* num_dependents_need_push_properties_for_parent);
-
- DISALLOW_COPY_AND_ASSIGN(TreeSynchronizer);
-};
-
-} // namespace cc
-
-#endif // CC_TREES_TREE_SYNCHRONIZER_H_
« no previous file with comments | « cc/trees/thread_proxy.cc ('k') | cc/trees/tree_synchronizer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698