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/macros.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 "base/threading/thread_checker.h" | 14 #include "base/threading/thread_checker.h" |
15 #include "cc/base/cc_export.h" | 15 #include "cc/base/cc_export.h" |
16 #include "cc/output/context_provider.h" | 16 #include "cc/output/context_provider.h" |
17 #include "cc/output/overlay_candidate_validator.h" | 17 #include "cc/output/overlay_candidate_validator.h" |
18 #include "cc/output/software_output_device.h" | 18 #include "cc/output/software_output_device.h" |
19 | 19 |
20 namespace base { class SingleThreadTaskRunner; } | 20 namespace base { class SingleThreadTaskRunner; } |
(...skipping 176 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
197 bool external_stencil_test_enabled_; | 197 bool external_stencil_test_enabled_; |
198 | 198 |
199 base::WeakPtrFactory<OutputSurface> weak_ptr_factory_; | 199 base::WeakPtrFactory<OutputSurface> weak_ptr_factory_; |
200 | 200 |
201 DISALLOW_COPY_AND_ASSIGN(OutputSurface); | 201 DISALLOW_COPY_AND_ASSIGN(OutputSurface); |
202 }; | 202 }; |
203 | 203 |
204 } // namespace cc | 204 } // namespace cc |
205 | 205 |
206 #endif // CC_OUTPUT_OUTPUT_SURFACE_H_ | 206 #endif // CC_OUTPUT_OUTPUT_SURFACE_H_ |
OLD | NEW |