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

Unified Diff: cc/test/push_properties_counting_layer.h

Issue 2456093003: Enable more layer_tree_host_unittest for LayerTreeHostRemote. (Closed)
Patch Set: Minor polish on refactored test class. Created 4 years, 1 month 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/proto/layer.proto ('k') | cc/test/push_properties_counting_layer.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/test/push_properties_counting_layer.h
diff --git a/cc/test/push_properties_counting_layer.h b/cc/test/push_properties_counting_layer.h
new file mode 100644
index 0000000000000000000000000000000000000000..76d2e750c0171f39390588852bfa3a783979b9d1
--- /dev/null
+++ b/cc/test/push_properties_counting_layer.h
@@ -0,0 +1,55 @@
+// Copyright 2016 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_TEST_PUSH_PROPERTIES_COUNTING_LAYER_H_
+#define CC_TEST_PUSH_PROPERTIES_COUNTING_LAYER_H_
+
+#include <memory>
+
+#include "base/macros.h"
+#include "base/memory/ref_counted.h"
+#include "cc/layers/layer.h"
+#include "cc/proto/layer.pb.h"
+
+namespace cc {
+
+class LayerImpl;
+class LayerTreeImpl;
+
+class PushPropertiesCountingLayer : public Layer {
+ public:
+ static scoped_refptr<PushPropertiesCountingLayer> Create();
+
+ // Layer implementation.
+ void PushPropertiesTo(LayerImpl* layer) override;
+ std::unique_ptr<LayerImpl> CreateLayerImpl(LayerTreeImpl* tree_impl) override;
+ void ToLayerPropertiesProto(proto::LayerUpdate* layer_update,
+ bool inputs_only) override;
+ void SetTypeForProtoSerialization(proto::LayerNode* proto) const override;
+
+ // Something to make this layer push properties, but no other layer.
+ void MakePushProperties();
+
+ size_t push_properties_count() const { return push_properties_count_; }
+ void reset_push_properties_count() { push_properties_count_ = 0; }
+
+ void set_persist_needs_push_properties(bool persist) {
+ persist_needs_push_properties_ = persist;
+ }
+
+ private:
+ PushPropertiesCountingLayer();
+ ~PushPropertiesCountingLayer() override;
+
+ void AddPushPropertiesCount();
+
+ size_t push_properties_count_;
+ bool persist_needs_push_properties_;
+
+ DISALLOW_COPY_AND_ASSIGN(PushPropertiesCountingLayer);
+};
+
+} // namespace cc
+
+#endif // CC_TEST_PUSH_PROPERTIES_COUNTING_LAYER_H_
« no previous file with comments | « cc/proto/layer.proto ('k') | cc/test/push_properties_counting_layer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698