OLD | NEW |
(Empty) | |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #ifndef CC_SURFACES_SURFACE_REFERENCE_FACTORY_H_ |
| 6 #define CC_SURFACES_SURFACE_REFERENCE_FACTORY_H_ |
| 7 |
| 8 #include "base/memory/ref_counted.h" |
| 9 #include "cc/surfaces/surface_id.h" |
| 10 #include "cc/surfaces/surface_reference_owner.h" |
| 11 |
| 12 namespace cc { |
| 13 |
| 14 class SurfaceReferenceBase; |
| 15 class CompositorFrameMetadata; |
| 16 |
| 17 // Creates surface references. Returns an object of type |
| 18 // SurfaceReferenceBase which holds on to its corresponding |
| 19 // surface reference until destruction. The referenced surface |
| 20 // will be kept alive as long as there is a reference to it. |
| 21 class SurfaceReferenceFactory |
| 22 : public base::RefCountedThreadSafe<SurfaceReferenceFactory> { |
| 23 public: |
| 24 virtual std::unique_ptr<SurfaceReferenceBase> CreateReference( |
| 25 SurfaceReferenceOwner* owner, |
| 26 const SurfaceId& surface_id) const = 0; |
| 27 |
| 28 SurfaceReferenceFactory() = default; |
| 29 |
| 30 protected: |
| 31 virtual ~SurfaceReferenceFactory() = default; |
| 32 |
| 33 private: |
| 34 friend class SurfaceReferenceBase; |
| 35 friend class base::RefCountedThreadSafe<SurfaceReferenceFactory>; |
| 36 |
| 37 virtual void DestroyReference(SurfaceReferenceBase* surface_ref) const = 0; |
| 38 virtual void DestroyReference(SurfaceReferenceBase* surface_ref, |
| 39 CompositorFrameMetadata* metadata) const = 0; |
| 40 |
| 41 DISALLOW_COPY_AND_ASSIGN(SurfaceReferenceFactory); |
| 42 }; |
| 43 |
| 44 } // namespace cc |
| 45 |
| 46 #endif // CC_SURFACES_SURFACE_REFERENCE_FACTORY_H_ |
OLD | NEW |