OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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_RESOURCES_TEXTURE_MAILBOX_DELETER_H_ | 5 #ifndef CC_RESOURCES_TEXTURE_MAILBOX_DELETER_H_ |
6 #define CC_RESOURCES_TEXTURE_MAILBOX_DELETER_H_ | 6 #define CC_RESOURCES_TEXTURE_MAILBOX_DELETER_H_ |
7 | 7 |
8 #include "base/memory/weak_ptr.h" | 8 #include "base/memory/weak_ptr.h" |
9 #include "cc/base/cc_export.h" | 9 #include "cc/base/cc_export.h" |
10 #include "cc/base/scoped_ptr_vector.h" | 10 #include "cc/base/scoped_ptr_vector.h" |
(...skipping 14 matching lines...) Expand all Loading... |
25 // due to the compositor shutting down, then the ReleaseCallback will | 25 // due to the compositor shutting down, then the ReleaseCallback will |
26 // become a no-op and the texture will be deleted immediately on the | 26 // become a no-op and the texture will be deleted immediately on the |
27 // impl thread, along with dropping the reference to the ContextProvider. | 27 // impl thread, along with dropping the reference to the ContextProvider. |
28 scoped_ptr<SingleReleaseCallback> GetReleaseCallback( | 28 scoped_ptr<SingleReleaseCallback> GetReleaseCallback( |
29 const scoped_refptr<ContextProvider>& context_provider, | 29 const scoped_refptr<ContextProvider>& context_provider, |
30 unsigned texture_id); | 30 unsigned texture_id); |
31 | 31 |
32 private: | 32 private: |
33 // Runs the |impl_callback| to delete the texture and removes the callback | 33 // Runs the |impl_callback| to delete the texture and removes the callback |
34 // from the |impl_callbacks_| list. | 34 // from the |impl_callbacks_| list. |
35 void RunDeleteTextureOnImplThread( | 35 void RunDeleteTextureOnImplThread(SingleReleaseCallback* impl_callback, |
36 SingleReleaseCallback* impl_callback, | 36 uint32 sync_point, |
37 unsigned sync_point, | 37 bool is_lost); |
38 bool is_lost); | |
39 | 38 |
40 ScopedPtrVector<SingleReleaseCallback> impl_callbacks_; | 39 ScopedPtrVector<SingleReleaseCallback> impl_callbacks_; |
41 base::WeakPtrFactory<TextureMailboxDeleter> weak_ptr_factory_; | 40 base::WeakPtrFactory<TextureMailboxDeleter> weak_ptr_factory_; |
42 }; | 41 }; |
43 | 42 |
44 } // namespace cc | 43 } // namespace cc |
45 | 44 |
46 #endif // CC_RESOURCES_TEXTURE_MAILBOX_DELETER_H_ | 45 #endif // CC_RESOURCES_TEXTURE_MAILBOX_DELETER_H_ |
OLD | NEW |