summaryrefslogtreecommitdiffstats
path: root/chromium/ppapi/shared_impl/tracked_callback.h
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/ppapi/shared_impl/tracked_callback.h')
-rw-r--r--chromium/ppapi/shared_impl/tracked_callback.h8
1 files changed, 2 insertions, 6 deletions
diff --git a/chromium/ppapi/shared_impl/tracked_callback.h b/chromium/ppapi/shared_impl/tracked_callback.h
index c8b6c013628..294c9b99b4e 100644
--- a/chromium/ppapi/shared_impl/tracked_callback.h
+++ b/chromium/ppapi/shared_impl/tracked_callback.h
@@ -109,13 +109,9 @@ class PPAPI_SHARED_EXPORT TrackedCallback
bool aborted() const { return aborted_; }
// Returns true if this is a blocking callback.
- bool is_blocking() {
- return !callback_.func;
- }
+ bool is_blocking() { return !callback_.func; }
- MessageLoopShared* target_loop() const {
- return target_loop_.get();
- }
+ MessageLoopShared* target_loop() const { return target_loop_.get(); }
// Determines if the given callback is pending. A callback is pending if it
// has not completed and has not been aborted. When receiving a plugin call,