Index: src/isolate.h |
diff --git a/src/isolate.h b/src/isolate.h |
index 9d450d390da8723019770ba69a0399c1f65d8cd0..ba1e53f8b07e3ad323d92fa82951fe4c4af1d82c 100644 |
--- a/src/isolate.h |
+++ b/src/isolate.h |
@@ -625,7 +625,9 @@ |
inline Handle<JSGlobalObject> global_object(); |
// Returns the global proxy object of the current context. |
- inline Handle<JSObject> global_proxy(); |
+ JSObject* global_proxy() { |
+ return context()->global_proxy(); |
+ } |
static int ArchiveSpacePerThread() { return sizeof(ThreadLocalTop); } |
void FreeThreadResources() { thread_local_top_.Free(); } |