diff options
author | ricea <ricea@chromium.org> | 2016-01-14 16:55:34 -0800 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2016-01-15 00:56:30 +0000 |
commit | ed5d9456d1dd46d8ae29656563f4789bbcd5d6f5 (patch) | |
tree | 9a950e1aebcbfc9d226893da87e7ba530cf0e4fb | |
parent | 08b217a012c56f5e02ca17388a6a3c905c77bcd6 (diff) | |
download | chromium_src-ed5d9456d1dd46d8ae29656563f4789bbcd5d6f5.zip chromium_src-ed5d9456d1dd46d8ae29656563f4789bbcd5d6f5.tar.gz chromium_src-ed5d9456d1dd46d8ae29656563f4789bbcd5d6f5.tar.bz2 |
Tiny: Add const modifier to BlobDataHandle::size()
blink::BlobDataHandle is an immutable object, but the size() method
was missing a const modifier. Add it.
BUG=none
TEST=webkit_unit_tests
Review URL: https://codereview.chromium.org/1585113005
Cr-Commit-Position: refs/heads/master@{#369637}
-rw-r--r-- | third_party/WebKit/Source/platform/blob/BlobData.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/third_party/WebKit/Source/platform/blob/BlobData.h b/third_party/WebKit/Source/platform/blob/BlobData.h index e54becf..d357358 100644 --- a/third_party/WebKit/Source/platform/blob/BlobData.h +++ b/third_party/WebKit/Source/platform/blob/BlobData.h @@ -221,7 +221,7 @@ public: String uuid() const { return m_uuid.isolatedCopy(); } String type() const { return m_type.isolatedCopy(); } - unsigned long long size() { return m_size; } + unsigned long long size() const { return m_size; } ~BlobDataHandle(); |