Chromium Code Reviews| Index: include/v8.h |
| =================================================================== |
| --- include/v8.h (revision 2709) |
| +++ include/v8.h (working copy) |
| @@ -2243,6 +2243,15 @@ |
| */ |
| static void IdleNotification(bool is_high_priority); |
| +#if defined(ANDROID) |
|
Mads Ager (chromium)
2009/08/19 17:24:23
I don't think we need to hide this under #if defin
Feng Qian
2009/08/20 00:06:08
Done.
|
| + /** |
| + * Android systems sends the browser a notification when it is in low |
| + * memory condition. It is necessary to do a full compact GC to release |
| + * DOM objects and also uncommit pages. |
| + */ |
| + static void LowMemoryNotification(); |
| +#endif |
| + |
| private: |
| V8(); |