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

Side by Side Diff: third_party/WebKit/Source/core/dom/DOMSharedArrayBuffer.cpp

Issue 1878463002: Move DOMArrayBuffer, DOMArrayBufferViews and DataView to the heap. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: tidy Created 4 years, 8 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 unified diff | Download patch
OLDNEW
1 // Copyright 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "core/dom/DOMSharedArrayBuffer.h" 5 #include "core/dom/DOMSharedArrayBuffer.h"
6 6
7 #include "bindings/core/v8/DOMDataStore.h" 7 #include "bindings/core/v8/DOMDataStore.h"
8 8
9 namespace blink { 9 namespace blink {
10 10
11 v8::Local<v8::Object> DOMSharedArrayBuffer::wrap(v8::Isolate* isolate, v8::Local <v8::Object> creationContext) 11 v8::Local<v8::Object> DOMSharedArrayBuffer::wrap(v8::Isolate* isolate, v8::Local <v8::Object> creationContext)
12 { 12 {
13 // It's possible that no one except for the new wrapper owns this object at
14 // this moment, so we have to prevent GC to collect this object until the
15 // object gets associated with the wrapper.
16 RefPtr<DOMSharedArrayBuffer> protect(this);
17
18 DCHECK(!DOMDataStore::containsWrapper(this, isolate)); 13 DCHECK(!DOMDataStore::containsWrapper(this, isolate));
19 14
20 const WrapperTypeInfo* wrapperTypeInfo = this->wrapperTypeInfo(); 15 const WrapperTypeInfo* wrapperTypeInfo = this->wrapperTypeInfo();
21 v8::Local<v8::Object> wrapper = v8::SharedArrayBuffer::New(isolate, data(), byteLength()); 16 v8::Local<v8::Object> wrapper = v8::SharedArrayBuffer::New(isolate, data(), byteLength());
22 17
23 return associateWithWrapper(isolate, wrapperTypeInfo, wrapper); 18 return associateWithWrapper(isolate, wrapperTypeInfo, wrapper);
24 } 19 }
25 20
26 } // namespace blink 21 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698