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

Unified Diff: src/arguments.h

Issue 760883002: Add interceptor support for symbols (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: fix test Created 6 years, 1 month 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 | « src/api.cc ('k') | src/elements.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/arguments.h
diff --git a/src/arguments.h b/src/arguments.h
index 9fb2da3bc5ccaa950427295aca54c6e6515e949f..e6c6db569befa798861dcecc1401baad8cc2c3e2 100644
--- a/src/arguments.h
+++ b/src/arguments.h
@@ -67,39 +67,24 @@ class Arguments BASE_EMBEDDED {
// For each type of callback, we have a list of arguments
// They are used to generate the Call() functions below
// These aren't included in the list as they have duplicate signatures
-// F(NamedPropertyEnumeratorCallback, ...)
+// F(GenericNamedPropertyEnumeratorCallback, ...)
+// F(GenericNamedPropertyGetterCallback, ...)
#define FOR_EACH_CALLBACK_TABLE_MAPPING_0(F) \
- F(IndexedPropertyEnumeratorCallback, v8::Array) \
-
-#define FOR_EACH_CALLBACK_TABLE_MAPPING_1(F) \
- F(NamedPropertyGetterCallback, v8::Value, v8::Local<v8::String>) \
- F(AccessorNameGetterCallback, v8::Value, v8::Local<v8::Name>) \
- F(NamedPropertyQueryCallback, \
- v8::Integer, \
- v8::Local<v8::String>) \
- F(NamedPropertyDeleterCallback, \
- v8::Boolean, \
- v8::Local<v8::String>) \
- F(IndexedPropertyGetterCallback, \
- v8::Value, \
- uint32_t) \
- F(IndexedPropertyQueryCallback, \
- v8::Integer, \
- uint32_t) \
- F(IndexedPropertyDeleterCallback, \
- v8::Boolean, \
- uint32_t) \
-
-#define FOR_EACH_CALLBACK_TABLE_MAPPING_2(F) \
- F(NamedPropertySetterCallback, \
- v8::Value, \
- v8::Local<v8::String>, \
- v8::Local<v8::Value>) \
- F(IndexedPropertySetterCallback, \
- v8::Value, \
- uint32_t, \
- v8::Local<v8::Value>) \
+ F(IndexedPropertyEnumeratorCallback, v8::Array)
+
+#define FOR_EACH_CALLBACK_TABLE_MAPPING_1(F) \
+ F(AccessorNameGetterCallback, v8::Value, v8::Local<v8::Name>) \
+ F(GenericNamedPropertyQueryCallback, v8::Integer, v8::Local<v8::Name>) \
+ F(GenericNamedPropertyDeleterCallback, v8::Boolean, v8::Local<v8::Name>) \
+ F(IndexedPropertyGetterCallback, v8::Value, uint32_t) \
+ F(IndexedPropertyQueryCallback, v8::Integer, uint32_t) \
+ F(IndexedPropertyDeleterCallback, v8::Boolean, uint32_t)
+
+#define FOR_EACH_CALLBACK_TABLE_MAPPING_2(F) \
+ F(GenericNamedPropertySetterCallback, v8::Value, v8::Local<v8::Name>, \
+ v8::Local<v8::Value>) \
+ F(IndexedPropertySetterCallback, v8::Value, uint32_t, v8::Local<v8::Value>)
#define FOR_EACH_CALLBACK_TABLE_MAPPING_2_VOID_RETURN(F) \
F(AccessorNameSetterCallback, \
« no previous file with comments | « src/api.cc ('k') | src/elements.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698