Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1705)

Unified Diff: net/spdy/spdy_session.h

Issue 10066045: RefCounted types should not have public destructors, net/ (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Deprecated cookiestore fix Created 8 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « net/socket/ssl_error_params.cc ('k') | net/spdy/spdy_session.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/spdy/spdy_session.h
diff --git a/net/spdy/spdy_session.h b/net/spdy/spdy_session.h
index d3d5ec3786ca642eae9711984bf543b676a373a2..787cb0e6437d5dac90f2be3abe92f18095913f9d 100644
--- a/net/spdy/spdy_session.h
+++ b/net/spdy/spdy_session.h
@@ -703,9 +703,10 @@ class NetLogSpdySynParameter : public NetLog::EventParameters {
virtual base::Value* ToValue() const OVERRIDE;
- private:
+ protected:
virtual ~NetLogSpdySynParameter();
+ private:
const linked_ptr<SpdyHeaderBlock> headers_;
const SpdyControlFlags flags_;
const SpdyStreamId id_;
@@ -721,9 +722,10 @@ class NetLogSpdyCredentialParameter : public NetLog::EventParameters {
virtual base::Value* ToValue() const OVERRIDE;
- private:
+ protected:
virtual ~NetLogSpdyCredentialParameter();
+ private:
const size_t slot_;
const std::string origin_;
@@ -738,9 +740,10 @@ class NetLogSpdySessionCloseParameter : public NetLog::EventParameters {
int status() const { return status_; }
virtual base::Value* ToValue() const OVERRIDE;
- private:
+ protected:
virtual ~NetLogSpdySessionCloseParameter();
+ private:
const int status_;
const std::string description_;
« no previous file with comments | « net/socket/ssl_error_params.cc ('k') | net/spdy/spdy_session.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698