Chromium Code Reviews| Index: include/v8.h | 
| diff --git a/include/v8.h b/include/v8.h | 
| index 2e30992eddddf7ef471d3679c545d021467d2719..2d420bd000e25a827e0e130bcc1713c127de8ea6 100644 | 
| --- a/include/v8.h | 
| +++ b/include/v8.h | 
| @@ -2740,9 +2740,11 @@ class V8EXPORT Unlocker { | 
| }; | 
| +class LockParameters; | 
| + | 
| class V8EXPORT Locker { | 
| public: | 
| - Locker(); | 
| + Locker(LockParameters* lock_parameters = NULL); | 
| ~Locker(); | 
| /** | 
| @@ -2772,6 +2774,7 @@ class V8EXPORT Locker { | 
| private: | 
| bool has_lock_; | 
| bool top_level_; | 
| + bool effective_; | 
| static bool active_; |