ozone: evdev: Sync caps lock LED state to evdev
[chromium-blink-merge.git] / cc / resources / display_list_recording_source.h
blobe827d2952e355e09e4b5bd1e3c7e328d7e746268
1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #ifndef CC_RESOURCES_DISPLAY_LIST_RECORDING_SOURCE_H_
6 #define CC_RESOURCES_DISPLAY_LIST_RECORDING_SOURCE_H_
8 #include "base/memory/scoped_ptr.h"
9 #include "cc/resources/recording_source.h"
11 namespace cc {
12 class DisplayItemList;
13 class DisplayListRasterSource;
15 class CC_EXPORT DisplayListRecordingSource : public RecordingSource {
16 public:
17 DisplayListRecordingSource();
18 ~DisplayListRecordingSource() override;
20 // RecordingSource overrides.
21 bool UpdateAndExpandInvalidation(ContentLayerClient* painter,
22 Region* invalidation,
23 const gfx::Size& layer_size,
24 const gfx::Rect& visible_layer_rect,
25 int frame_number,
26 RecordingMode recording_mode) override;
27 void DidMoveToNewCompositor() override;
28 scoped_refptr<RasterSource> CreateRasterSource(
29 bool can_use_lcd_text) const override;
30 gfx::Size GetSize() const final;
31 void SetEmptyBounds() override;
32 void SetSlowdownRasterScaleFactor(int factor) override;
33 void SetBackgroundColor(SkColor background_color) override;
34 void SetRequiresClear(bool requires_clear) override;
35 bool IsSuitableForGpuRasterization() const override;
36 void SetUnsuitableForGpuRasterizationForTesting() override;
37 gfx::Size GetTileGridSizeForTesting() const override;
39 protected:
40 void Clear();
42 gfx::Rect recorded_viewport_;
43 gfx::Size size_;
44 int slow_down_raster_scale_factor_for_debug_;
45 bool requires_clear_;
46 bool is_solid_color_;
47 SkColor solid_color_;
48 SkColor background_color_;
49 int pixel_record_distance_;
51 scoped_refptr<DisplayItemList> display_list_;
53 private:
54 friend class DisplayListRasterSource;
56 void DetermineIfSolidColor();
58 bool is_suitable_for_gpu_rasterization_;
60 DISALLOW_COPY_AND_ASSIGN(DisplayListRecordingSource);
63 } // namespace cc
65 #endif // CC_RESOURCES_DISPLAY_LIST_RECORDING_SOURCE_H_