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

Unified Diff: src/runtime/runtime.h

Issue 1312413002: Move runtime helper for JSSet and JSMap onto objects. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years, 4 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/objects.cc ('k') | src/runtime/runtime-collections.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/runtime/runtime.h
diff --git a/src/runtime/runtime.h b/src/runtime/runtime.h
index 8e2bba61c3a1a0a1edc312feaba8324692bda4d7..f0a3d452d92f13a2199d83693b046fed626da148 100644
--- a/src/runtime/runtime.h
+++ b/src/runtime/runtime.h
@@ -1167,8 +1167,6 @@ class Runtime : public AllStatic {
size_t allocated_length, bool initialize = true,
SharedFlag shared = SharedFlag::kNotShared);
- static void NeuterArrayBuffer(Handle<JSArrayBuffer> array_buffer);
-
enum TypedArrayId {
// arrayIds below should be synchromized with typedarray.js natives.
ARRAY_ID_UINT8 = 1,
@@ -1193,12 +1191,6 @@ class Runtime : public AllStatic {
Isolate* isolate, Handle<FixedArray> literals,
Handle<FixedArray> elements, bool is_strong);
-
- static void JSMapInitialize(Isolate* isolate, Handle<JSMap> map);
- static void JSMapClear(Isolate* isolate, Handle<JSMap> map);
- static void JSSetInitialize(Isolate* isolate, Handle<JSSet> set);
- static void JSSetClear(Isolate* isolate, Handle<JSSet> set);
-
static void WeakCollectionInitialize(
Isolate* isolate, Handle<JSWeakCollection> weak_collection);
static void WeakCollectionSet(Handle<JSWeakCollection> weak_collection,
« no previous file with comments | « src/objects.cc ('k') | src/runtime/runtime-collections.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698