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

Side by Side Diff: Source/wtf/ArrayBufferContents.h

Issue 19019002: Ensure that ArrayBuffers actively being used by the Web Audio API cannot be neutered (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: rebase for re-landing Created 7 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 | Annotate | Revision Log
« no previous file with comments | « Source/wtf/ArrayBuffer.cpp ('k') | Source/wtf/ArrayBufferContents.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2009 Apple Inc. All rights reserved. 2 * Copyright (C) 2009 Apple Inc. All rights reserved.
3 * Copyright (C) 2013 Google Inc. All rights reserved. 3 * Copyright (C) 2013 Google Inc. All rights reserved.
4 * 4 *
5 * Redistribution and use in source and binary forms, with or without 5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions 6 * modification, are permitted provided that the following conditions
7 * are met: 7 * are met:
8 * 1. Redistributions of source code must retain the above copyright 8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright 10 * 2. Redistributions in binary form must reproduce the above copyright
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
53 53
54 void clear(); 54 void clear();
55 55
56 void* data() const { return m_data; } 56 void* data() const { return m_data; }
57 unsigned sizeInBytes() const { return m_sizeInBytes; } 57 unsigned sizeInBytes() const { return m_sizeInBytes; }
58 58
59 bool hasDeallocationObserver() const { return !!m_deallocationObserver; } 59 bool hasDeallocationObserver() const { return !!m_deallocationObserver; }
60 void setDeallocationObserver(ArrayBufferDeallocationObserver* observer) { m_ deallocationObserver = observer; } 60 void setDeallocationObserver(ArrayBufferDeallocationObserver* observer) { m_ deallocationObserver = observer; }
61 61
62 void transfer(ArrayBufferContents& other); 62 void transfer(ArrayBufferContents& other);
63 void copyTo(ArrayBufferContents& other);
63 64
64 static bool allocateMemory(size_t, InitializationPolicy, void*& data); 65 static bool allocateMemory(size_t, InitializationPolicy, void*& data);
65 static void freeMemory(void* data); 66 static void freeMemory(void* data);
66 67
67 private: 68 private:
68 void* m_data; 69 void* m_data;
69 unsigned m_sizeInBytes; 70 unsigned m_sizeInBytes;
70 ArrayBufferDeallocationObserver* m_deallocationObserver; 71 ArrayBufferDeallocationObserver* m_deallocationObserver;
71 }; 72 };
72 73
73 } // namespace WTF 74 } // namespace WTF
74 75
75 #endif // ArrayBufferContents_h 76 #endif // ArrayBufferContents_h
OLDNEW
« no previous file with comments | « Source/wtf/ArrayBuffer.cpp ('k') | Source/wtf/ArrayBufferContents.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698