| 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 12 matching lines...) Expand all Loading... |
| 23 | 23 |
| 24 void ClearClient() { client_ = NULL; } | 24 void ClearClient() { client_ = NULL; } |
| 25 | 25 |
| 26 // Layer interface. | 26 // Layer interface. |
| 27 virtual bool DrawsContent() const OVERRIDE; | 27 virtual bool DrawsContent() const OVERRIDE; |
| 28 virtual scoped_ptr<LayerImpl> CreateLayerImpl( | 28 virtual scoped_ptr<LayerImpl> CreateLayerImpl( |
| 29 LayerTreeImpl* tree_impl) OVERRIDE; | 29 LayerTreeImpl* tree_impl) OVERRIDE; |
| 30 virtual void SetLayerTreeHost(LayerTreeHost* host) OVERRIDE; | 30 virtual void SetLayerTreeHost(LayerTreeHost* host) OVERRIDE; |
| 31 virtual void PushPropertiesTo(LayerImpl* layer) OVERRIDE; | 31 virtual void PushPropertiesTo(LayerImpl* layer) OVERRIDE; |
| 32 virtual void SetNeedsDisplayRect(const gfx::RectF& layer_rect) OVERRIDE; | 32 virtual void SetNeedsDisplayRect(const gfx::RectF& layer_rect) OVERRIDE; |
| 33 virtual bool Update( | 33 virtual bool Update(ResourceUpdateQueue* queue, |
| 34 ResourceUpdateQueue* queue, | 34 const OcclusionTracker<Layer>* occlusion) OVERRIDE; |
| 35 const OcclusionTracker* occlusion) OVERRIDE; | |
| 36 virtual void SetIsMask(bool is_mask) OVERRIDE; | 35 virtual void SetIsMask(bool is_mask) OVERRIDE; |
| 37 virtual bool SupportsLCDText() const OVERRIDE; | 36 virtual bool SupportsLCDText() const OVERRIDE; |
| 38 virtual skia::RefPtr<SkPicture> GetPicture() const OVERRIDE; | 37 virtual skia::RefPtr<SkPicture> GetPicture() const OVERRIDE; |
| 39 | 38 |
| 40 virtual void RunMicroBenchmark(MicroBenchmark* benchmark) OVERRIDE; | 39 virtual void RunMicroBenchmark(MicroBenchmark* benchmark) OVERRIDE; |
| 41 | 40 |
| 42 ContentLayerClient* client() { return client_; } | 41 ContentLayerClient* client() { return client_; } |
| 43 | 42 |
| 44 protected: | 43 protected: |
| 45 explicit PictureLayer(ContentLayerClient* client); | 44 explicit PictureLayer(ContentLayerClient* client); |
| (...skipping 12 matching lines...) Expand all Loading... |
| 58 bool is_mask_; | 57 bool is_mask_; |
| 59 | 58 |
| 60 int update_source_frame_number_; | 59 int update_source_frame_number_; |
| 61 | 60 |
| 62 DISALLOW_COPY_AND_ASSIGN(PictureLayer); | 61 DISALLOW_COPY_AND_ASSIGN(PictureLayer); |
| 63 }; | 62 }; |
| 64 | 63 |
| 65 } // namespace cc | 64 } // namespace cc |
| 66 | 65 |
| 67 #endif // CC_LAYERS_PICTURE_LAYER_H_ | 66 #endif // CC_LAYERS_PICTURE_LAYER_H_ |
| OLD | NEW |