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

Side by Side Diff: cc/resources/display_list_recording_source.h

Issue 951673002: Revert "Pull chromium at 2c3ffb2355a27c32f45e508ef861416b820c823b" (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 5 years, 10 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 unified diff | Download patch
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 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 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CC_RESOURCES_DISPLAY_LIST_RECORDING_SOURCE_H_ 5 #ifndef CC_RESOURCES_DISPLAY_LIST_RECORDING_SOURCE_H_
6 #define CC_RESOURCES_DISPLAY_LIST_RECORDING_SOURCE_H_ 6 #define CC_RESOURCES_DISPLAY_LIST_RECORDING_SOURCE_H_
7 7
8 #include "base/memory/scoped_ptr.h" 8 #include "base/memory/scoped_ptr.h"
9 #include "cc/resources/recording_source.h" 9 #include "cc/resources/recording_source.h"
10 10
11 namespace cc { 11 namespace cc {
12 class DisplayItemList; 12 class DisplayItemList;
13 class DisplayListRasterSource; 13 class DisplayListRasterSource;
14 14
15 class CC_EXPORT DisplayListRecordingSource : public RecordingSource { 15 class CC_EXPORT DisplayListRecordingSource : public RecordingSource {
16 public: 16 public:
17 DisplayListRecordingSource(); 17 DisplayListRecordingSource();
18 ~DisplayListRecordingSource() override; 18 ~DisplayListRecordingSource() override;
19 19
20 // RecordingSource overrides. 20 // RecordingSource overrides.
21 bool UpdateAndExpandInvalidation(ContentLayerClient* painter, 21 bool UpdateAndExpandInvalidation(ContentLayerClient* painter,
22 Region* invalidation, 22 Region* invalidation,
23 bool can_use_lcd_text,
23 const gfx::Size& layer_size, 24 const gfx::Size& layer_size,
24 const gfx::Rect& visible_layer_rect, 25 const gfx::Rect& visible_layer_rect,
25 int frame_number, 26 int frame_number,
26 RecordingMode recording_mode) override; 27 RecordingMode recording_mode) override;
27 scoped_refptr<RasterSource> CreateRasterSource( 28 scoped_refptr<RasterSource> CreateRasterSource() const override;
28 bool can_use_lcd_text) const override;
29 gfx::Size GetSize() const final; 29 gfx::Size GetSize() const final;
30 void SetEmptyBounds() override; 30 void SetEmptyBounds() override;
31 void SetSlowdownRasterScaleFactor(int factor) override; 31 void SetSlowdownRasterScaleFactor(int factor) override;
32 void SetBackgroundColor(SkColor background_color) override; 32 void SetBackgroundColor(SkColor background_color) override;
33 void SetRequiresClear(bool requires_clear) override; 33 void SetRequiresClear(bool requires_clear) override;
34 bool IsSuitableForGpuRasterization() const override; 34 bool IsSuitableForGpuRasterization() const override;
35 void SetUnsuitableForGpuRasterizationForTesting() override; 35 void SetUnsuitableForGpuRasterizationForTesting() override;
36 gfx::Size GetTileGridSizeForTesting() const override; 36 gfx::Size GetTileGridSizeForTesting() const override;
37 37
38 protected: 38 protected:
39 void Clear(); 39 void Clear();
40 40
41 gfx::Rect recorded_viewport_; 41 gfx::Rect recorded_viewport_;
42 gfx::Size size_; 42 gfx::Size size_;
43 int slow_down_raster_scale_factor_for_debug_; 43 int slow_down_raster_scale_factor_for_debug_;
44 bool can_use_lcd_text_;
44 bool requires_clear_; 45 bool requires_clear_;
45 bool is_solid_color_; 46 bool is_solid_color_;
46 SkColor solid_color_; 47 SkColor solid_color_;
47 SkColor background_color_; 48 SkColor background_color_;
48 int pixel_record_distance_; 49 int pixel_record_distance_;
49 50
50 scoped_refptr<DisplayItemList> display_list_; 51 scoped_refptr<DisplayItemList> display_list_;
51 52
52 private: 53 private:
53 friend class DisplayListRasterSource; 54 friend class DisplayListRasterSource;
54 55
55 void DetermineIfSolidColor(); 56 void DetermineIfSolidColor();
56 57
57 bool is_suitable_for_gpu_rasterization_; 58 bool is_suitable_for_gpu_rasterization_;
58 59
59 DISALLOW_COPY_AND_ASSIGN(DisplayListRecordingSource); 60 DISALLOW_COPY_AND_ASSIGN(DisplayListRecordingSource);
60 }; 61 };
61 62
62 } // namespace cc 63 } // namespace cc
63 64
64 #endif // CC_RESOURCES_DISPLAY_LIST_RECORDING_SOURCE_H_ 65 #endif // CC_RESOURCES_DISPLAY_LIST_RECORDING_SOURCE_H_
OLDNEW
« no previous file with comments | « cc/resources/display_list_raster_source.cc ('k') | cc/resources/display_list_recording_source.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698