| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 PPAPI_UTILITY_COMPLETION_CALLBACK_FACTORY_H_ | 5 #ifndef PPAPI_UTILITY_COMPLETION_CALLBACK_FACTORY_H_ |
| 6 #define PPAPI_UTILITY_COMPLETION_CALLBACK_FACTORY_H_ | 6 #define PPAPI_UTILITY_COMPLETION_CALLBACK_FACTORY_H_ |
| 7 | 7 |
| 8 #include "ppapi/cpp/completion_callback.h" | 8 #include "ppapi/cpp/completion_callback.h" |
| 9 #include "ppapi/utility/non_thread_safe_ref_count.h" | 9 #include "ppapi/utility/non_thread_safe_ref_count.h" |
| 10 | 10 |
| (...skipping 544 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 555 CompletionCallbackFactory(const CompletionCallbackFactory&); | 555 CompletionCallbackFactory(const CompletionCallbackFactory&); |
| 556 CompletionCallbackFactory& operator=(const CompletionCallbackFactory&); | 556 CompletionCallbackFactory& operator=(const CompletionCallbackFactory&); |
| 557 | 557 |
| 558 T* object_; | 558 T* object_; |
| 559 BackPointer* back_pointer_; | 559 BackPointer* back_pointer_; |
| 560 }; | 560 }; |
| 561 | 561 |
| 562 } // namespace pp | 562 } // namespace pp |
| 563 | 563 |
| 564 #endif // PPAPI_UTILITY_COMPLETION_CALLBACK_FACTORY_H_ | 564 #endif // PPAPI_UTILITY_COMPLETION_CALLBACK_FACTORY_H_ |
| OLD | NEW |