| 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_DELEGATED_RENDERER_LAYER_H_ | 5 #ifndef CC_LAYERS_DELEGATED_RENDERER_LAYER_H_ |
| 6 #define CC_LAYERS_DELEGATED_RENDERER_LAYER_H_ | 6 #define CC_LAYERS_DELEGATED_RENDERER_LAYER_H_ |
| 7 | 7 |
| 8 #include "cc/base/cc_export.h" | 8 #include "cc/base/cc_export.h" |
| 9 #include "cc/layers/layer.h" | 9 #include "cc/layers/layer.h" |
| 10 #include "cc/resources/returned_resource.h" | 10 #include "cc/resources/returned_resource.h" |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 42 virtual ~DelegatedRendererLayer(); | 42 virtual ~DelegatedRendererLayer(); |
| 43 | 43 |
| 44 private: | 44 private: |
| 45 scoped_ptr<DelegatedFrameData> frame_data_; | 45 scoped_ptr<DelegatedFrameData> frame_data_; |
| 46 gfx::RectF damage_in_frame_; | 46 gfx::RectF damage_in_frame_; |
| 47 gfx::Size frame_size_; | 47 gfx::Size frame_size_; |
| 48 gfx::Size display_size_; | 48 gfx::Size display_size_; |
| 49 ReturnedResourceArray unused_resources_for_child_compositor_; | 49 ReturnedResourceArray unused_resources_for_child_compositor_; |
| 50 | 50 |
| 51 DelegatedRendererLayerClient* client_; | 51 DelegatedRendererLayerClient* client_; |
| 52 bool needs_filter_context_; |
| 52 | 53 |
| 53 DISALLOW_COPY_AND_ASSIGN(DelegatedRendererLayer); | 54 DISALLOW_COPY_AND_ASSIGN(DelegatedRendererLayer); |
| 54 }; | 55 }; |
| 55 | 56 |
| 56 } // namespace cc | 57 } // namespace cc |
| 57 #endif // CC_LAYERS_DELEGATED_RENDERER_LAYER_H_ | 58 #endif // CC_LAYERS_DELEGATED_RENDERER_LAYER_H_ |
| OLD | NEW |