Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(58)

Unified Diff: include/v8.h

Issue 503022: Add locker support to DebugMessageDispatchHandler (Closed)
Patch Set: make compilable with debugger support off Created 11 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « SConstruct ('k') | include/v8-debug.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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_;
« no previous file with comments | « SConstruct ('k') | include/v8-debug.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698