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

Unified Diff: net/udp/udp_data_transfer_param.cc

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/udp/udp_data_transfer_param.h ('k') | net/url_request/url_request_job_factory_unittest.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.cc
diff --git a/net/udp/udp_data_transfer_param.cc b/net/udp/udp_data_transfer_param.cc
index 808cd8bdaf9b6fb2ee74c5f284bb800acbb998a0..ee28cdc1878639e81eb52ce636c8f30f6387cfcc 100644
--- a/net/udp/udp_data_transfer_param.cc
+++ b/net/udp/udp_data_transfer_param.cc
@@ -20,9 +20,6 @@ UDPDataTransferNetLogParam::UDPDataTransferNetLogParam(
address_.reset(new IPEndPoint(*address));
}
-UDPDataTransferNetLogParam::~UDPDataTransferNetLogParam() {
-}
-
Value* UDPDataTransferNetLogParam::ToValue() const {
DictionaryValue* dict = new DictionaryValue();
dict->SetInteger("byte_count", byte_count_);
@@ -33,4 +30,6 @@ Value* UDPDataTransferNetLogParam::ToValue() const {
return dict;
}
+UDPDataTransferNetLogParam::~UDPDataTransferNetLogParam() {}
+
} // namespace net
« no previous file with comments | « net/udp/udp_data_transfer_param.h ('k') | net/url_request/url_request_job_factory_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698