| 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 03c2761039bb27a4523f5ccc892d26b0d68a7490..54c87b377e725398d3f02df071713f7ee3237c12 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 @@ public:
|
| virtual ViewType type() const = 0;
|
| const char* typeName();
|
|
|
| - PassRefPtr<ArrayBuffer> buffer() const
|
| + ArrayBuffer* buffer() const
|
| {
|
| - return m_buffer;
|
| + return m_buffer.get();
|
| }
|
|
|
| void* baseAddress() const
|
|
|