| Index: src/v8.cc
|
| ===================================================================
|
| --- src/v8.cc (revision 3014)
|
| +++ src/v8.cc (working copy)
|
| @@ -169,12 +169,10 @@
|
| }
|
|
|
|
|
| -bool V8::IdleNotification(bool is_high_priority) {
|
| +bool V8::IdleNotification() {
|
| // Returning true tells the caller that there is no need to call
|
| // IdleNotification again.
|
| if (!FLAG_use_idle_notification) return true;
|
| - // Ignore high priority instances of V8.
|
| - if (is_high_priority) return true;
|
|
|
| // Tell the heap that it may want to adjust.
|
| return Heap::IdleNotification();
|
|
|