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

Unified Diff: net/url_request/url_request_netlog_params.cc

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/url_request/url_request_netlog_params.cc
diff --git a/net/url_request/url_request_netlog_params.cc b/net/url_request/url_request_netlog_params.cc
index 42076bcce17f1b6d1df2dc147ffc5afa30693714..6b3e398b7fca022a606e02ec7226f58b2c3e6022 100644
--- a/net/url_request/url_request_netlog_params.cc
+++ b/net/url_request/url_request_netlog_params.cc
@@ -19,6 +19,8 @@ URLRequestStartEventParameters::URLRequestStartEventParameters(
priority_(priority) {
}
+URLRequestStartEventParameters::~URLRequestStartEventParameters() {}
eroman 2012/04/13 18:59:34 match declaration order.
+
Value* URLRequestStartEventParameters::ToValue() const {
DictionaryValue* dict = new DictionaryValue();
dict->SetString("url", url_.possibly_invalid_spec());

Powered by Google App Engine
This is Rietveld 408576698