summaryrefslogtreecommitdiffstats
path: root/src/contexts.h
diff options
context:
space:
mode:
authorKristian Monsen <kristianm@google.com>2010-09-08 11:05:35 +0100
committerKristian Monsen <kristianm@google.com>2010-09-08 11:48:46 +0100
commit80d68eab642096c1a48b6474d6ec33064b0ad1f5 (patch)
tree6d3389d4fa4ca4a913970f75df6bbad6b1c858e9 /src/contexts.h
parent791712a13f1814dd3ab5d1a5ab8ff5dbc476f6d6 (diff)
downloadandroid_external_v8-80d68eab642096c1a48b6474d6ec33064b0ad1f5.tar.gz
android_external_v8-80d68eab642096c1a48b6474d6ec33064b0ad1f5.tar.bz2
android_external_v8-80d68eab642096c1a48b6474d6ec33064b0ad1f5.zip
Update V8 to r5388 as required by WebKit r66666
Change-Id: Ib3c42e9b7226d22c65c7077c543fe31afe62a318
Diffstat (limited to 'src/contexts.h')
-rw-r--r--src/contexts.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/contexts.h b/src/contexts.h
index 181efc9b..78dda6a6 100644
--- a/src/contexts.h
+++ b/src/contexts.h
@@ -28,6 +28,9 @@
#ifndef V8_CONTEXTS_H_
#define V8_CONTEXTS_H_
+#include "heap.h"
+#include "objects.h"
+
namespace v8 {
namespace internal {
@@ -86,6 +89,7 @@ enum ContextLookupFlags {
V(CONFIGURE_GLOBAL_INDEX, JSFunction, configure_global_fun) \
V(FUNCTION_CACHE_INDEX, JSObject, function_cache) \
V(JSFUNCTION_RESULT_CACHES_INDEX, FixedArray, jsfunction_result_caches) \
+ V(NORMALIZED_MAP_CACHE_INDEX, NormalizedMapCache, normalized_map_cache) \
V(RUNTIME_CONTEXT_INDEX, Context, runtime_context) \
V(CALL_AS_FUNCTION_DELEGATE_INDEX, JSFunction, call_as_function_delegate) \
V(CALL_AS_CONSTRUCTOR_DELEGATE_INDEX, JSFunction, \
@@ -211,6 +215,7 @@ class Context: public FixedArray {
CONFIGURE_GLOBAL_INDEX,
FUNCTION_CACHE_INDEX,
JSFUNCTION_RESULT_CACHES_INDEX,
+ NORMALIZED_MAP_CACHE_INDEX,
RUNTIME_CONTEXT_INDEX,
CALL_AS_FUNCTION_DELEGATE_INDEX,
CALL_AS_CONSTRUCTOR_DELEGATE_INDEX,