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

Unified Diff: Source/core/dom/DOMTypedArray.h

Issue 1180023002: Inline the only callers of TypedArrayBase::{setRange,zeroRange} (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | Source/modules/webaudio/AudioBuffer.cpp » ('j') | Source/modules/webaudio/AudioBuffer.cpp » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/dom/DOMTypedArray.h
diff --git a/Source/core/dom/DOMTypedArray.h b/Source/core/dom/DOMTypedArray.h
index 572601f6ecb3730062cc2bfda3a11cbb348e5c1a..b11474ff7c919f3e88376c0c9264084976318c73 100644
--- a/Source/core/dom/DOMTypedArray.h
+++ b/Source/core/dom/DOMTypedArray.h
@@ -56,14 +56,6 @@ public:
ValueType* data() const { return view()->data(); }
unsigned length() const { return view()->length(); }
- bool setRange(const ValueType* data, size_t dataLength, unsigned offset)
- {
- return view()->setRange(data, dataLength, offset);
- }
- bool zeroRange(unsigned offset, size_t length)
- {
- return view()->zeroRange(offset, length);
- }
// Invoked by the indexed getter. Does not perform range checks; caller
// is responsible for doing so and returning undefined as necessary.
ValueType item(unsigned index) const { return view()->item(index); }
« no previous file with comments | « no previous file | Source/modules/webaudio/AudioBuffer.cpp » ('j') | Source/modules/webaudio/AudioBuffer.cpp » ('J')

Powered by Google App Engine
This is Rietveld 408576698