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

Unified Diff: src/objects.h

Issue 27335002: Handlify GetPropertyWithCallback. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 7 years, 2 months 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 | « no previous file | src/objects.cc » ('j') | src/objects.cc » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/objects.h
diff --git a/src/objects.h b/src/objects.h
index 2925c54f1800c279598aaf92fc8a047615b6d42c..ed16deab393964e479d08983d9a0c03f8768f139 100644
--- a/src/objects.h
+++ b/src/objects.h
@@ -2126,10 +2126,6 @@ class JSObject: public JSReceiver {
Handle<Object> structure,
Handle<Name> name);
- MUST_USE_RESULT MaybeObject* GetPropertyWithCallback(Object* receiver,
- Object* structure,
- Name* name);
-
static Handle<Object> SetPropertyWithCallback(
Handle<JSObject> object,
Handle<Object> structure,
@@ -2660,6 +2656,10 @@ class JSObject: public JSReceiver {
Handle<Name> name,
PropertyAttributes* attributes);
+ static Handle<Object> GetPropertyWithForeignCallback(Isolate* isolate,
+ Handle<Object> structure,
+ Handle<Object> receiver);
+
MUST_USE_RESULT MaybeObject* GetElementWithCallback(Object* receiver,
Object* structure,
uint32_t index,
« no previous file with comments | « no previous file | src/objects.cc » ('j') | src/objects.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698