| Index: ppapi/shared_impl/tracked_callback.h
|
| diff --git a/ppapi/shared_impl/tracked_callback.h b/ppapi/shared_impl/tracked_callback.h
|
| index 03bf1626e30882cf09b986c8f7f61f28388cce3c..79e84f6fa9111121cb12404da3f5c051f816af9e 100644
|
| --- a/ppapi/shared_impl/tracked_callback.h
|
| +++ b/ppapi/shared_impl/tracked_callback.h
|
| @@ -117,9 +117,7 @@ class PPAPI_SHARED_EXPORT TrackedCallback
|
| return (callback_.func &&
|
| (callback_.flags & PP_COMPLETIONCALLBACK_FLAG_OPTIONAL));
|
| }
|
| - bool has_null_target_loop() const {
|
| - return target_loop_ == NULL;
|
| - }
|
| + bool has_null_target_loop() const { return target_loop_.get() == NULL; }
|
|
|
| private:
|
| // TrackedCallback and EnterBase manage dealing with how to invoke callbacks
|
|
|