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

Unified Diff: src/runtime.h

Issue 3473024: [Isolates] More handle improvements: (Closed)
Patch Set: Created 10 years, 3 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 | « src/ic.cc ('k') | src/runtime.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/runtime.h
diff --git a/src/runtime.h b/src/runtime.h
index 26a210f25d4c91b69a6608a045293052b3916ed6..b43264dfb37b9b57dd63b519031be774ed98cdc8 100644
--- a/src/runtime.h
+++ b/src/runtime.h
@@ -513,32 +513,33 @@ class Runtime : public AllStatic {
// Support getting the characters in a string using [] notation as
// in Firefox/SpiderMonkey, Safari and Opera.
- static Object* GetElementOrCharAt(Heap* heap,
+ static Object* GetElementOrCharAt(Isolate* isolate,
Handle<Object> object,
uint32_t index);
static Object* GetElement(Handle<Object> object, uint32_t index);
- static Object* SetObjectProperty(Heap* heap,
+ static Object* SetObjectProperty(Isolate* isolate,
Handle<Object> object,
Handle<Object> key,
Handle<Object> value,
PropertyAttributes attr);
- static Object* ForceSetObjectProperty(Handle<JSObject> object,
+ static Object* ForceSetObjectProperty(Isolate* isolate,
+ Handle<JSObject> object,
Handle<Object> key,
Handle<Object> value,
PropertyAttributes attr);
- static Object* ForceDeleteObjectProperty(Heap* heap,
+ static Object* ForceDeleteObjectProperty(Isolate* isolate,
Handle<JSObject> object,
Handle<Object> key);
- static Object* GetObjectProperty(Heap* heap,
+ static Object* GetObjectProperty(Isolate* isolate,
Handle<Object> object,
Handle<Object> key);
// This function is used in FunctionNameUsing* tests.
- static Object* FindSharedFunctionInfoInScript(Heap* heap,
+ static Object* FindSharedFunctionInfoInScript(Isolate* isolate,
Handle<Script> script,
int position);
« no previous file with comments | « src/ic.cc ('k') | src/runtime.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698