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

Unified Diff: ipc/message_router.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: ipc/message_router.h
diff --git a/ipc/message_router.h b/ipc/message_router.h
index f232896855dc4cbb34032c201bfea224a575621b..82999ab05607db0a5f3cda51bb91fb729be6ab34 100644
--- a/ipc/message_router.h
+++ b/ipc/message_router.h
@@ -64,7 +64,7 @@ class IPC_EXPORT MessageRouter : public Listener, public Sender {
private:
// A list of all listeners with assigned routing IDs.
- IDMap<Listener> routes_;
+ IDMap<Listener*> routes_;
DISALLOW_COPY_AND_ASSIGN(MessageRouter);
};

Powered by Google App Engine
This is Rietveld 408576698