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

Side by Side Diff: Source/core/dom/DOMArrayBufferBase.h

Issue 1097773004: Sharing of SharedArrayBuffer via PostMessage transfer (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: update for non-split typedarray hierarchy Created 5 years, 6 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
(Empty)
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
3 // found in the LICENSE file.
4
5 #ifndef DOMArrayBufferBase_h
6 #define DOMArrayBufferBase_h
7
8 #include "bindings/core/v8/ScriptWrappable.h"
9 #include "core/CoreExport.h"
10 #include "core/dom/DOMArrayBufferDeallocationObserver.h"
11 #include "wtf/ArrayBuffer.h"
12 #include "wtf/RefCounted.h"
13
14 namespace blink {
15
16 class CORE_EXPORT DOMArrayBufferBase : public RefCounted<DOMArrayBufferBase>, pu blic ScriptWrappable {
17 public:
18 virtual ~DOMArrayBufferBase() { }
19
20 const WTF::ArrayBuffer* buffer() const { return m_buffer.get(); }
21 WTF::ArrayBuffer* buffer() { return m_buffer.get(); }
22
23 const void* data() const { return buffer()->data(); }
24 void* data() { return buffer()->data(); }
25 unsigned byteLength() const { return buffer()->byteLength(); }
26 bool transfer(WTF::ArrayBufferContents& result) { return buffer()->transfer( result); }
27 bool isNeutered() const { return buffer()->isNeutered(); }
28 bool isShared() const { return buffer()->isShared(); }
29 void setDeallocationObserver(DOMArrayBufferDeallocationObserver& observer)
30 {
31 buffer()->setDeallocationObserver(observer);
32 }
33
34 virtual v8::Local<v8::Object> wrap(v8::Isolate*, v8::Local<v8::Object> creat ionContext) override
35 {
36 ASSERT_NOT_REACHED();
37 return v8::Local<v8::Object>();
38 }
39
40 virtual v8::Local<v8::Object> associateWithWrapper(v8::Isolate*, const Wrapp erTypeInfo*, v8::Local<v8::Object> wrapper) override
41 {
42 ASSERT_NOT_REACHED();
43 return v8::Local<v8::Object>();
44 }
45
46 protected:
47 explicit DOMArrayBufferBase(PassRefPtr<WTF::ArrayBuffer> buffer)
48 : m_buffer(buffer)
49 {
50 ASSERT(m_buffer);
51 }
52
53 RefPtr<WTF::ArrayBuffer> m_buffer;
54 };
55
56 } // namespace blink
57
58 #endif // DOMArrayBuffer_h
59
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698