| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2010 Google Inc. All rights reserved. | 2 * Copyright (C) 2010 Google Inc. All rights reserved. |
| 3 * | 3 * |
| 4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
| 5 * modification, are permitted provided that the following conditions are | 5 * modification, are permitted provided that the following conditions are |
| 6 * met: | 6 * met: |
| 7 * | 7 * |
| 8 * * Redistributions of source code must retain the above copyright | 8 * * Redistributions of source code must retain the above copyright |
| 9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
| 10 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
| (...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 62 } | 62 } |
| 63 | 63 |
| 64 V8GCForContextDispose& V8GCForContextDispose::instance() | 64 V8GCForContextDispose& V8GCForContextDispose::instance() |
| 65 { | 65 { |
| 66 DEFINE_STATIC_LOCAL(V8GCForContextDispose, staticInstance, ()); | 66 DEFINE_STATIC_LOCAL(V8GCForContextDispose, staticInstance, ()); |
| 67 return staticInstance; | 67 return staticInstance; |
| 68 } | 68 } |
| 69 | 69 |
| 70 void V8GCForContextDispose::pseudoIdleTimerFired(Timer<V8GCForContextDispose>*) | 70 void V8GCForContextDispose::pseudoIdleTimerFired(Timer<V8GCForContextDispose>*) |
| 71 { | 71 { |
| 72 const int idlePauseInMs = 10; | 72 V8PerIsolateData::mainThreadIsolate()->IdleNotification(0); |
| 73 V8PerIsolateData::mainThreadIsolate()->IdleNotification(idlePauseInMs); | |
| 74 reset(); | 73 reset(); |
| 75 } | 74 } |
| 76 | 75 |
| 77 void V8GCForContextDispose::reset() | 76 void V8GCForContextDispose::reset() |
| 78 { | 77 { |
| 79 m_didDisposeContextForMainFrame = false; | 78 m_didDisposeContextForMainFrame = false; |
| 80 m_lastContextDisposalTime = -1; | 79 m_lastContextDisposalTime = -1; |
| 81 } | 80 } |
| 82 | 81 |
| 83 } // namespace blink | 82 } // namespace blink |
| OLD | NEW |