Fix FullScreen crash in Webapp
[platform/framework/web/chromium-efl.git] / cc / benchmarks / invalidation_benchmark.h
1 // Copyright 2014 The Chromium Authors
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef CC_BENCHMARKS_INVALIDATION_BENCHMARK_H_
6 #define CC_BENCHMARKS_INVALIDATION_BENCHMARK_H_
7
8 #include <stdint.h>
9
10 #include "cc/benchmarks/micro_benchmark_controller.h"
11
12 namespace cc {
13
14 class LayerTreeHost;
15
16 // NOTE: this benchmark will not measure or return any results, it will simply
17 // invalidate a certain area of each layer every frame. It is intended to be
18 // used in combination with a telemetry benchmark that does the actual
19 // measurement.
20 class CC_EXPORT InvalidationBenchmark : public MicroBenchmark {
21  public:
22   explicit InvalidationBenchmark(base::Value::Dict settings,
23                                  MicroBenchmark::DoneCallback callback);
24   ~InvalidationBenchmark() override;
25
26   // Implements MicroBenchmark interface.
27   void DidUpdateLayers(LayerTreeHost* layer_tree_host) override;
28   void RunOnLayer(PictureLayer* layer) override;
29   bool ProcessMessage(base::Value::Dict message) override;
30
31  private:
32   enum Mode { FIXED_SIZE, LAYER, VIEWPORT, RANDOM };
33
34   float LCGRandom();
35
36   Mode mode_;
37   int width_;
38   int height_;
39   uint32_t seed_ = 0;
40 };
41
42 }  // namespace cc
43
44 #endif  // CC_BENCHMARKS_INVALIDATION_BENCHMARK_H_