diff options
author | eroman@chromium.org <eroman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-09-17 01:56:36 +0000 |
---|---|---|
committer | eroman@chromium.org <eroman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-09-17 01:56:36 +0000 |
commit | 8d993b39b0f0e73ac48e049129114aec2f4b1b6a (patch) | |
tree | a4b0c3c619e27ae41ca219f895c373bb8916d34f | |
parent | 8775413991340698f576748d4eae8dd60269cab3 (diff) | |
download | chromium_src-8d993b39b0f0e73ac48e049129114aec2f4b1b6a.zip chromium_src-8d993b39b0f0e73ac48e049129114aec2f4b1b6a.tar.gz chromium_src-8d993b39b0f0e73ac48e049129114aec2f4b1b6a.tar.bz2 |
Remove non-const references from MemEntryImpl.
Review URL: https://chromiumcodereview.appspot.com/23530064
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@223510 0039d316-1c4b-4281-b951-d872f2087c98
-rw-r--r-- | net/disk_cache/mem_entry_impl.h | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/net/disk_cache/mem_entry_impl.h b/net/disk_cache/mem_entry_impl.h index ef91f6d..b84cc39 100644 --- a/net/disk_cache/mem_entry_impl.h +++ b/net/disk_cache/mem_entry_impl.h @@ -82,11 +82,7 @@ class MemEntryImpl : public Entry { return parent_ ? kChildEntry : kParentEntry; } - std::string& key() { - return key_; - } - - net::BoundNetLog& net_log() { + const net::BoundNetLog& net_log() { return net_log_; } |