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

Unified Diff: net/base/address_list.h

Issue 10391019: Adds NON_EXPORTED_BASE to AddressList base class. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Created 8 years, 7 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/base/address_list.h
diff --git a/net/base/address_list.h b/net/base/address_list.h
index c76152f1736fee2250be2af51f9afba95edf4bfd..8d544b6c58df19e3eb502037f5726e8a90501435 100644
--- a/net/base/address_list.h
+++ b/net/base/address_list.h
@@ -10,6 +10,7 @@
#include <vector>
#include "base/basictypes.h"
+#include "base/compiler_specific.h"
#include "net/base/ip_endpoint.h"
#include "net/base/net_export.h"
#include "net/base/net_util.h"
@@ -18,7 +19,8 @@ struct addrinfo;
namespace net {
-class NET_EXPORT AddressList : private std::vector<IPEndPoint> {
+class NET_EXPORT AddressList
+ : NON_EXPORTED_BASE(private std::vector<IPEndPoint>) {
public:
AddressList();
~AddressList();
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698