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

Unified Diff: content/renderer/p2p/socket_dispatcher.h

Issue 2496653002: Part 2 of base::IDMap refactor to eliminate IDMapOwnPointer/IDMapExternalPointer modes (Closed)
Patch Set: typedefs => using statements, update comments in base/id_map.h Created 4 years 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: content/renderer/p2p/socket_dispatcher.h
diff --git a/content/renderer/p2p/socket_dispatcher.h b/content/renderer/p2p/socket_dispatcher.h
index 493114fc337700b713bbacdc6b792bfc85178eca..53ca15544f94856135bff81cae9abecb12215e80 100644
--- a/content/renderer/p2p/socket_dispatcher.h
+++ b/content/renderer/p2p/socket_dispatcher.h
@@ -112,9 +112,9 @@ class CONTENT_EXPORT P2PSocketDispatcher : public IPC::MessageFilter,
P2PSocketClientImpl* GetClient(int socket_id);
scoped_refptr<base::SingleThreadTaskRunner> ipc_task_runner_;
- IDMap<P2PSocketClientImpl> clients_;
+ IDMap<P2PSocketClientImpl*> clients_;
- IDMap<P2PAsyncAddressResolver> host_address_requests_;
+ IDMap<P2PAsyncAddressResolver*> host_address_requests_;
bool network_notifications_started_;
scoped_refptr<base::ObserverListThreadSafe<NetworkListObserver>>
« no previous file with comments | « content/renderer/media/renderer_webmediaplayer_delegate.cc ('k') | content/renderer/p2p/socket_dispatcher.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698