| OLD | NEW |
| 1 // Copyright 2012 The Chromium Authors. All rights reserved. | 1 // Copyright 2012 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_LAYERS_PICTURE_LAYER_H_ | 5 #ifndef CC_LAYERS_PICTURE_LAYER_H_ |
| 6 #define CC_LAYERS_PICTURE_LAYER_H_ | 6 #define CC_LAYERS_PICTURE_LAYER_H_ |
| 7 | 7 |
| 8 #include "cc/base/invalidation_region.h" | 8 #include "cc/base/invalidation_region.h" |
| 9 #include "cc/debug/devtools_instrumentation.h" | 9 #include "cc/debug/devtools_instrumentation.h" |
| 10 #include "cc/debug/micro_benchmark_controller.h" | 10 #include "cc/debug/micro_benchmark_controller.h" |
| (...skipping 22 matching lines...) Expand all Loading... |
| 33 const OcclusionTracker<Layer>* occlusion) override; | 33 const OcclusionTracker<Layer>* occlusion) override; |
| 34 virtual void SetIsMask(bool is_mask) override; | 34 virtual void SetIsMask(bool is_mask) override; |
| 35 virtual bool SupportsLCDText() const override; | 35 virtual bool SupportsLCDText() const override; |
| 36 virtual skia::RefPtr<SkPicture> GetPicture() const override; | 36 virtual skia::RefPtr<SkPicture> GetPicture() const override; |
| 37 virtual bool IsSuitableForGpuRasterization() const override; | 37 virtual bool IsSuitableForGpuRasterization() const override; |
| 38 | 38 |
| 39 virtual void RunMicroBenchmark(MicroBenchmark* benchmark) override; | 39 virtual void RunMicroBenchmark(MicroBenchmark* benchmark) override; |
| 40 | 40 |
| 41 ContentLayerClient* client() { return client_; } | 41 ContentLayerClient* client() { return client_; } |
| 42 | 42 |
| 43 Picture::RecordingMode RecordingMode() const; | |
| 44 | |
| 45 PicturePile* GetPicturePileForTesting() const { return pile_.get(); } | 43 PicturePile* GetPicturePileForTesting() const { return pile_.get(); } |
| 46 | 44 |
| 47 protected: | 45 protected: |
| 48 explicit PictureLayer(ContentLayerClient* client); | 46 explicit PictureLayer(ContentLayerClient* client); |
| 49 virtual ~PictureLayer(); | 47 virtual ~PictureLayer(); |
| 50 | 48 |
| 51 virtual bool HasDrawableContent() const override; | 49 virtual bool HasDrawableContent() const override; |
| 52 void UpdateCanUseLCDText(); | 50 void UpdateCanUseLCDText(); |
| 53 | 51 |
| 54 private: | 52 private: |
| 55 ContentLayerClient* client_; | 53 ContentLayerClient* client_; |
| 56 scoped_refptr<PicturePile> pile_; | 54 scoped_refptr<PicturePile> pile_; |
| 57 devtools_instrumentation:: | 55 devtools_instrumentation:: |
| 58 ScopedLayerObjectTracker instrumentation_object_tracker_; | 56 ScopedLayerObjectTracker instrumentation_object_tracker_; |
| 59 // Invalidation to use the next time update is called. | 57 // Invalidation to use the next time update is called. |
| 60 InvalidationRegion pending_invalidation_; | 58 InvalidationRegion pending_invalidation_; |
| 61 // Invalidation from the last time update was called. | 59 // Invalidation from the last time update was called. |
| 62 Region pile_invalidation_; | 60 Region pile_invalidation_; |
| 63 gfx::Rect last_updated_visible_content_rect_; | 61 gfx::Rect last_updated_visible_content_rect_; |
| 64 | 62 |
| 65 int update_source_frame_number_; | 63 int update_source_frame_number_; |
| 66 bool can_use_lcd_text_last_frame_; | 64 bool can_use_lcd_text_last_frame_; |
| 67 | 65 |
| 68 DISALLOW_COPY_AND_ASSIGN(PictureLayer); | 66 DISALLOW_COPY_AND_ASSIGN(PictureLayer); |
| 69 }; | 67 }; |
| 70 | 68 |
| 71 } // namespace cc | 69 } // namespace cc |
| 72 | 70 |
| 73 #endif // CC_LAYERS_PICTURE_LAYER_H_ | 71 #endif // CC_LAYERS_PICTURE_LAYER_H_ |
| OLD | NEW |