| 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/transferable_resource.h" | 10 #include "cc/resources/transferable_resource.h" |
| (...skipping 25 matching lines...) Expand all Loading... |
| 36 protected: | 36 protected: |
| 37 DelegatedRendererLayer(); | 37 DelegatedRendererLayer(); |
| 38 virtual ~DelegatedRendererLayer(); | 38 virtual ~DelegatedRendererLayer(); |
| 39 | 39 |
| 40 private: | 40 private: |
| 41 scoped_ptr<DelegatedFrameData> frame_data_; | 41 scoped_ptr<DelegatedFrameData> frame_data_; |
| 42 gfx::RectF damage_in_frame_; | 42 gfx::RectF damage_in_frame_; |
| 43 gfx::Size frame_size_; | 43 gfx::Size frame_size_; |
| 44 gfx::Size display_size_; | 44 gfx::Size display_size_; |
| 45 TransferableResourceArray unused_resources_for_child_compositor_; | 45 TransferableResourceArray unused_resources_for_child_compositor_; |
| 46 |
| 47 DISALLOW_COPY_AND_ASSIGN(DelegatedRendererLayer); |
| 46 }; | 48 }; |
| 47 | 49 |
| 48 } // namespace cc | 50 } // namespace cc |
| 49 #endif // CC_LAYERS_DELEGATED_RENDERER_LAYER_H_ | 51 #endif // CC_LAYERS_DELEGATED_RENDERER_LAYER_H_ |
| OLD | NEW |