summaryrefslogtreecommitdiffstats
path: root/ipc
diff options
context:
space:
mode:
authorjar@chromium.org <jar@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-11-12 02:58:59 +0000
committerjar@chromium.org <jar@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-11-12 02:58:59 +0000
commitb75d4a04a5c16e876268c8ec24daa8eb05f37ec0 (patch)
tree9daf9116c1f179ba96590b6af40d319a56492d01 /ipc
parent9b4773aed187d5c3c1cb9e8dc3a445cc7e48e42c (diff)
downloadchromium_src-b75d4a04a5c16e876268c8ec24daa8eb05f37ec0.zip
chromium_src-b75d4a04a5c16e876268c8ec24daa8eb05f37ec0.tar.gz
chromium_src-b75d4a04a5c16e876268c8ec24daa8eb05f37ec0.tar.bz2
Revert 109760 - Uncomment third IPC hook for about:profiler
If this causes ASAN problems with browser tests, then I'll revert it. Tests to watch out for (on ASAN bot) are: IncognitoSplitMode TwoExtensionsCrashBothAtOnce TwoExtensionsOneByOne AutoUpdate CognitoNoFile IncognitoNoFile OnChangedNotificationsBetweenBackgroundPages SplitModeIncognito So far, I've uncommented two hooks, with no problems ;-). One of these hooks will illuminate the problems. r=rtenneti BUG=103830 Review URL: http://codereview.chromium.org/8491065 TBR=jar@chromium.org Review URL: http://codereview.chromium.org/8538035 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@109762 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ipc')
-rw-r--r--ipc/ipc_message_macros.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/ipc/ipc_message_macros.h b/ipc/ipc_message_macros.h
index 4dfbdc8..bcc4e57 100644
--- a/ipc/ipc_message_macros.h
+++ b/ipc/ipc_message_macros.h
@@ -966,7 +966,7 @@ LogFunctionMap g_log_function_mapping;
#define IPC_MESSAGE_HANDLER_GENERIC(msg_class, code) \
case msg_class::ID: { \
- TRACK_RUN_IN_IPC_HANDLER(code); \
+ /* TRACK_RUN_IN_IPC_HANDLER(code); TODO(jar) */ \
code; \
} \
break;