| Index: third_party/WebKit/Source/wtf/typed_arrays/ArrayBufferView.h
|
| diff --git a/third_party/WebKit/Source/wtf/typed_arrays/ArrayBufferView.h b/third_party/WebKit/Source/wtf/typed_arrays/ArrayBufferView.h
|
| index 54c87b377e725398d3f02df071713f7ee3237c12..03c2761039bb27a4523f5ccc892d26b0d68a7490 100644
|
| --- a/third_party/WebKit/Source/wtf/typed_arrays/ArrayBufferView.h
|
| +++ b/third_party/WebKit/Source/wtf/typed_arrays/ArrayBufferView.h
|
| @@ -52,9 +52,9 @@
|
| virtual ViewType type() const = 0;
|
| const char* typeName();
|
|
|
| - ArrayBuffer* buffer() const
|
| + PassRefPtr<ArrayBuffer> buffer() const
|
| {
|
| - return m_buffer.get();
|
| + return m_buffer;
|
| }
|
|
|
| void* baseAddress() const
|
|
|