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

Unified Diff: ipc/ipc_message_macros.h

Issue 8463033: Uncomment a different third IPC hook for about:profiler (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 9 years, 1 month 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: ipc/ipc_message_macros.h
===================================================================
--- ipc/ipc_message_macros.h (revision 109769)
+++ ipc/ipc_message_macros.h (working copy)
@@ -954,7 +954,7 @@
#define IPC_MESSAGE_FORWARD_DELAY_REPLY(msg_class, obj, member_func) \
case msg_class::ID: { \
- /* TRACK_RUN_IN_IPC_HANDLER(member_func); TODO(jar) */ \
+ TRACK_RUN_IN_IPC_HANDLER(member_func); \
msg_is_ok__ = msg_class::DispatchDelayReply(&ipc_message__, obj, \
&member_func); \
} \
@@ -964,6 +964,7 @@
IPC_MESSAGE_FORWARD_DELAY_REPLY(msg_class, this, \
_IpcMessageHandlerClass::member_func)
+// TODO(jar): fix chrome frame to always supply |code| argument.
#define IPC_MESSAGE_HANDLER_GENERIC(msg_class, code) \
case msg_class::ID: { \
/* TRACK_RUN_IN_IPC_HANDLER(code); TODO(jar) */ \
@@ -981,7 +982,6 @@
#define IPC_MESSAGE_UNHANDLED(code) \
default: { \
- /* TRACK_RUN_IN_IPC_HANDLER(code); TODO(jar) */ \
code; \
} \
break;
« 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