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

Unified Diff: net/udp/udp_data_transfer_param.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/spdy/spdy_stream.cc ('k') | net/udp/udp_data_transfer_param.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/udp/udp_data_transfer_param.h
diff --git a/net/udp/udp_data_transfer_param.h b/net/udp/udp_data_transfer_param.h
index 1ef86fdd6895ff136622aab4a537f63a4f161f39..1de461fc5e6c4118fa4b730777eb33ad3160c64b 100644
--- a/net/udp/udp_data_transfer_param.h
+++ b/net/udp/udp_data_transfer_param.h
@@ -23,12 +23,16 @@ class UDPDataTransferNetLogParam : public NetLog::EventParameters {
public:
// |bytes| are only logged when |log_bytes| is non-NULL.
// |address| may be NULL.
- UDPDataTransferNetLogParam(int byte_count, const char* bytes, bool log_bytes,
+ UDPDataTransferNetLogParam(int byte_count,
+ const char* bytes,
+ bool log_bytes,
const IPEndPoint* address);
- virtual ~UDPDataTransferNetLogParam();
virtual base::Value* ToValue() const OVERRIDE;
+ protected:
+ virtual ~UDPDataTransferNetLogParam();
+
private:
const int byte_count_;
const std::string hex_encoded_bytes_;
« no previous file with comments | « net/spdy/spdy_stream.cc ('k') | net/udp/udp_data_transfer_param.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698