Commit 0bd0353a authored by Eric Seckler's avatar Eric Seckler Committed by Commit Bot

[blink] Fix gcc compilation in ArrayBufferContents.h

Bug: 
Change-Id: I9b060df69df9893e65d90a58676d77bd3ec0da42
Reviewed-on: https://chromium-review.googlesource.com/571745Reviewed-by: default avatarJochen Eisinger <jochen@chromium.org>
Commit-Queue: Eric Seckler <eseckler@chromium.org>
Cr-Commit-Position: refs/heads/master@{#486767}
parent 78911827
...@@ -122,7 +122,7 @@ class WTF_EXPORT ArrayBufferContents { ...@@ -122,7 +122,7 @@ class WTF_EXPORT ArrayBufferContents {
void* Data() const { return data_; } void* Data() const { return data_; }
size_t DataLength() const { return data_length_; } size_t DataLength() const { return data_length_; }
AllocationKind AllocationKind() const { return kind_; } ArrayBufferContents::AllocationKind AllocationKind() const { return kind_; }
operator bool() const { return allocation_base_; } operator bool() const { return allocation_base_; }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment