Chromium Code Reviews

Unified Diff: net/base/upload_data.h

Issue 368001: Second patch in making destructors of refcounted objects private. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Index: net/base/upload_data.h
===================================================================
--- net/base/upload_data.h (revision 31079)
+++ net/base/upload_data.h (working copy)
@@ -102,6 +102,10 @@
int64 identifier() const { return identifier_; }
private:
+ friend class base::RefCounted<UploadData>;
+
+ ~UploadData() {}
+
std::vector<Element> elements_;
int64 identifier_;
};

Powered by Google App Engine