diff --git a/mozilla/js/src/jslock.h b/mozilla/js/src/jslock.h index 05f66e1f6bb..89e64788539 100644 --- a/mozilla/js/src/jslock.h +++ b/mozilla/js/src/jslock.h @@ -41,6 +41,9 @@ #include "prcvar.h" #include "jshash.h" /* Added by JSIFY */ +#include "jsprvtd.h" /* for JSScope, etc. */ +#include "jspubtd.h" /* for JSRuntime, etc. */ + #define Thin_GetWait(W) ((jsword)(W) & 0x1) #define Thin_SetWait(W) ((jsword)(W) | 0x1) #define Thin_RemoveWait(W) ((jsword)(W) & ~0x1)