diff options
author | vmpstr <vmpstr@chromium.org> | 2016-02-26 13:08:55 -0800 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2016-02-26 21:12:37 +0000 |
commit | acd23b71c788a2f93a6d553a6fa347610f577f7d (patch) | |
tree | a90cbe3856d7c162a6aaeda2a4995c49fb642f8f /net/http/http_auth_cache.h | |
parent | 780523e0eecff2a39c4428ea240c7551b9c0c7a2 (diff) | |
download | chromium_src-acd23b71c788a2f93a6d553a6fa347610f577f7d.zip chromium_src-acd23b71c788a2f93a6d553a6fa347610f577f7d.tar.gz chromium_src-acd23b71c788a2f93a6d553a6fa347610f577f7d.tar.bz2 |
net: Add out-of-line copy ctors for complex classes.
This patch adds out of line copy constructors for classes that our
clang-plugin considers heavy. This is an effort to enable copy
constructor checks by default.
BUG=436357
R=agl@chromium.org, dcheng@chromium.org, thakis@chromium.org
Review URL: https://codereview.chromium.org/1728333003
Cr-Commit-Position: refs/heads/master@{#377976}
Diffstat (limited to 'net/http/http_auth_cache.h')
-rw-r--r-- | net/http/http_auth_cache.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/net/http/http_auth_cache.h b/net/http/http_auth_cache.h index 53b998f..9190e42 100644 --- a/net/http/http_auth_cache.h +++ b/net/http/http_auth_cache.h @@ -31,6 +31,7 @@ class NET_EXPORT_PRIVATE HttpAuthCache { public: class NET_EXPORT_PRIVATE Entry { public: + Entry(const Entry& other); ~Entry(); const GURL& origin() const { |