| 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_OUTPUT_OUTPUT_SURFACE_H_ | 5 #ifndef CC_OUTPUT_OUTPUT_SURFACE_H_ |
| 6 #define CC_OUTPUT_OUTPUT_SURFACE_H_ | 6 #define CC_OUTPUT_OUTPUT_SURFACE_H_ |
| 7 | 7 |
| 8 #include <deque> | 8 #include <deque> |
| 9 | 9 |
| 10 #include "base/basictypes.h" | 10 #include "base/basictypes.h" |
| 11 #include "base/memory/ref_counted.h" | 11 #include "base/memory/ref_counted.h" |
| 12 #include "base/memory/scoped_ptr.h" | 12 #include "base/memory/scoped_ptr.h" |
| 13 #include "base/memory/weak_ptr.h" | 13 #include "base/memory/weak_ptr.h" |
| 14 #include "cc/base/cc_export.h" | 14 #include "cc/base/cc_export.h" |
| 15 #include "cc/base/rolling_time_delta_history.h" | |
| 16 #include "cc/output/begin_frame_args.h" | |
| 17 #include "cc/output/context_provider.h" | 15 #include "cc/output/context_provider.h" |
| 18 #include "cc/output/overlay_candidate_validator.h" | 16 #include "cc/output/overlay_candidate_validator.h" |
| 19 #include "cc/output/software_output_device.h" | 17 #include "cc/output/software_output_device.h" |
| 20 | 18 |
| 21 namespace base { class SingleThreadTaskRunner; } | 19 namespace base { class SingleThreadTaskRunner; } |
| 22 | 20 |
| 23 namespace ui { struct LatencyInfo; } | 21 namespace ui { struct LatencyInfo; } |
| 24 | 22 |
| 25 namespace gfx { | 23 namespace gfx { |
| 26 class Rect; | 24 class Rect; |
| (...skipping 149 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 176 bool external_stencil_test_enabled_; | 174 bool external_stencil_test_enabled_; |
| 177 | 175 |
| 178 base::WeakPtrFactory<OutputSurface> weak_ptr_factory_; | 176 base::WeakPtrFactory<OutputSurface> weak_ptr_factory_; |
| 179 | 177 |
| 180 DISALLOW_COPY_AND_ASSIGN(OutputSurface); | 178 DISALLOW_COPY_AND_ASSIGN(OutputSurface); |
| 181 }; | 179 }; |
| 182 | 180 |
| 183 } // namespace cc | 181 } // namespace cc |
| 184 | 182 |
| 185 #endif // CC_OUTPUT_OUTPUT_SURFACE_H_ | 183 #endif // CC_OUTPUT_OUTPUT_SURFACE_H_ |
| OLD | NEW |