diff options
author | dmichael <dmichael@chromium.org> | 2014-12-18 14:30:57 -0800 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2014-12-18 22:32:43 +0000 |
commit | d6e570d8b4e46053505df0852e33fe5404ef07f4 (patch) | |
tree | 7cac356199e5e290278f5aab431831c89ebc1932 /net/disk_cache | |
parent | 7d09007efbb714fbb8da0a46a0bbb9e08b18d6ed (diff) | |
download | chromium_src-d6e570d8b4e46053505df0852e33fe5404ef07f4.zip chromium_src-d6e570d8b4e46053505df0852e33fe5404ef07f4.tar.gz chromium_src-d6e570d8b4e46053505df0852e33fe5404ef07f4.tar.bz2 |
net: Fix latent style issues
Currently, the Clang style checker ignores templates. In order to turn it on,
we first must fix latent style violations. This CL covers net/
BUG=441916
R=rsleevi@chromium.org
Review URL: https://codereview.chromium.org/787883003
Cr-Commit-Position: refs/heads/master@{#309089}
Diffstat (limited to 'net/disk_cache')
-rw-r--r-- | net/disk_cache/blockfile/storage_block.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/net/disk_cache/blockfile/storage_block.h b/net/disk_cache/blockfile/storage_block.h index 0d51474..6db4a31 100644 --- a/net/disk_cache/blockfile/storage_block.h +++ b/net/disk_cache/blockfile/storage_block.h @@ -34,9 +34,9 @@ class StorageBlock : public FileBlock { virtual ~StorageBlock(); // FileBlock interface. - virtual void* buffer() const; - virtual size_t size() const; - virtual int offset() const; + void* buffer() const override; + size_t size() const override; + int offset() const override; // Allows the overide of dummy values passed on the constructor. bool LazyInit(MappedFile* file, Addr address); |