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

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

Issue 1179373004: Add DOMSharedArrayBuffer type (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: merge master Created 5 years, 5 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
« no previous file with comments | « Source/core/dom/DOMArrayBuffer.cpp ('k') | Source/core/dom/DOMArrayBufferView.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 "wtf/ArrayBuffer.h"
11 #include "wtf/RefCounted.h"
12
13 namespace blink {
14
15 class CORE_EXPORT DOMArrayBufferBase : public RefCounted<DOMArrayBufferBase>, pu blic ScriptWrappable {
16 public:
17 virtual ~DOMArrayBufferBase() { }
18
19 const WTF::ArrayBuffer* buffer() const { return m_buffer.get(); }
20 WTF::ArrayBuffer* buffer() { return m_buffer.get(); }
21
22 const void* data() const { return buffer()->data(); }
23 void* data() { return buffer()->data(); }
24 unsigned byteLength() const { return buffer()->byteLength(); }
25 bool transfer(WTF::ArrayBufferContents& result) { return buffer()->transfer( result); }
26 bool isNeutered() const { return buffer()->isNeutered(); }
27 bool isShared() const { return buffer()->isShared(); }
28
29 v8::Local<v8::Object> wrap(v8::Isolate*, v8::Local<v8::Object> creationConte xt) override
30 {
31 ASSERT_NOT_REACHED();
32 return v8::Local<v8::Object>();
33 }
34
35 v8::Local<v8::Object> associateWithWrapper(v8::Isolate*, const WrapperTypeIn fo*, v8::Local<v8::Object> wrapper) override
36 {
37 ASSERT_NOT_REACHED();
38 return v8::Local<v8::Object>();
39 }
40
41 protected:
42 explicit DOMArrayBufferBase(PassRefPtr<WTF::ArrayBuffer> buffer)
43 : m_buffer(buffer)
44 {
45 ASSERT(m_buffer);
46 }
47
48 RefPtr<WTF::ArrayBuffer> m_buffer;
49 };
50
51 } // namespace blink
52
53 #endif // DOMArrayBuffer_h
54
OLDNEW
« no previous file with comments | « Source/core/dom/DOMArrayBuffer.cpp ('k') | Source/core/dom/DOMArrayBufferView.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698