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

Unified Diff: src/objects.h

Issue 25732002: Handlify GetPropertyWithFailedAccessCheck. (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 958201b74c4e48b32c5c66092bf6ad0f3a622db5..81af3a48eef7c1a46a26efeb8095e016662404ab 100644
--- a/src/objects.h
+++ b/src/objects.h
@@ -2117,6 +2117,11 @@ class JSObject: public JSReceiver {
// a dictionary, and it will stay a dictionary.
MUST_USE_RESULT MaybeObject* PrepareSlowElementsForSort(uint32_t limit);
+ static Handle<Object> GetPropertyWithCallback(Handle<JSObject> holder,
Michael Starzinger 2013/10/02 18:39:53 nit: s/holder/object/ for consistency.
+ Handle<Object> receiver,
+ Handle<Object> structure,
+ Handle<Name> name);
+
MUST_USE_RESULT MaybeObject* GetPropertyWithCallback(Object* receiver,
Object* structure,
Name* name);
@@ -2243,10 +2248,11 @@ class JSObject: public JSReceiver {
Handle<AccessorInfo> info);
// Used from Object::GetProperty().
- MUST_USE_RESULT MaybeObject* GetPropertyWithFailedAccessCheck(
- Object* receiver,
+ static Handle<Object> GetPropertyWithFailedAccessCheck(
+ Handle<JSObject> failed_check_obj,
Michael Starzinger 2013/10/02 18:39:53 nit: s/failed_check_obj/object/ for consistency.
+ Handle<Object> receiver,
LookupResult* result,
- Name* name,
+ Handle<Name> name,
PropertyAttributes* attributes);
static Handle<Object> GetPropertyWithInterceptor(
Handle<JSObject> holder,
« 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