summaryrefslogtreecommitdiffstats
path: root/net/base/network_delegate.h
diff options
context:
space:
mode:
authortfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-07-25 13:54:38 +0000
committertfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-07-25 13:54:38 +0000
commit8da4b181bb0e611e1f6ce2880b5ebcfec7efa99f (patch)
tree2981a415045b6475c27fff558d1213459c7fbe7a /net/base/network_delegate.h
parent06b8914b3a620f1d7d16c52422fec03116fd9c7b (diff)
downloadchromium_src-8da4b181bb0e611e1f6ce2880b5ebcfec7efa99f.zip
chromium_src-8da4b181bb0e611e1f6ce2880b5ebcfec7efa99f.tar.gz
chromium_src-8da4b181bb0e611e1f6ce2880b5ebcfec7efa99f.tar.bz2
Do not inherit from std::vector.
vector does not have a virtual destructor, see Item 7 from of Effective STL from Scott Meyers for a detailed explanation. BUG=135335 R=markusheintz@chromium.org,willchan@chromium.org TBR=jam@chromium.org Review URL: https://chromiumcodereview.appspot.com/10796081 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@148315 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'net/base/network_delegate.h')
-rw-r--r--net/base/network_delegate.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/base/network_delegate.h b/net/base/network_delegate.h
index 137c914..5ecd0f8 100644
--- a/net/base/network_delegate.h
+++ b/net/base/network_delegate.h
@@ -12,6 +12,7 @@
#include "base/threading/non_thread_safe.h"
#include "net/base/auth.h"
#include "net/base/completion_callback.h"
+#include "net/cookies/canonical_cookie.h"
class FilePath;
class GURL;
@@ -28,7 +29,6 @@ namespace net {
// NOTE: It is not okay to add any compile-time dependencies on symbols outside
// of net/base here, because we have a net_base library. Forward declarations
// are ok.
-class CookieList;
class CookieOptions;
class HttpRequestHeaders;
class HttpResponseHeaders;