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

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: 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
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..7277e69af96cea1f7d86687ae46ef2cd3d3d8ac4 100644
--- a/net/udp/udp_data_transfer_param.h
+++ b/net/udp/udp_data_transfer_param.h
@@ -25,11 +25,12 @@ class UDPDataTransferNetLogParam : public NetLog::EventParameters {
// |address| may be NULL.
UDPDataTransferNetLogParam(int byte_count, const char* bytes, bool log_bytes,
const IPEndPoint* address);
- virtual ~UDPDataTransferNetLogParam();
virtual base::Value* ToValue() const OVERRIDE;
private:
+ virtual ~UDPDataTransferNetLogParam();
+
const int byte_count_;
const std::string hex_encoded_bytes_;
scoped_ptr<IPEndPoint> address_;

Powered by Google App Engine
This is Rietveld 408576698