* Returns true if this task should be scheduled using `requestIdleCallback`. * Otherwise, task is scheduled as macro-task on next event loop. * @return {boolean} * @protected
()
| 228 | * @protected |
| 229 | */ |
| 230 | useRequestIdleCallback_() { |
| 231 | // By default, never use requestIdleCallback. |
| 232 | return false; |
| 233 | } |
| 234 | } |
| 235 | |
| 236 | /** |