diff options
author | jar@chromium.org <jar@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-11-11 22:41:08 +0000 |
---|---|---|
committer | jar@chromium.org <jar@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-11-11 22:41:08 +0000 |
commit | e3bd15ccedd1abf420026b84122f28796410d62a (patch) | |
tree | 592205a653fc4da0f1796b1f456aaa8df579fcf8 /ipc | |
parent | c25db185303fdcc66f0411ad4b0216c2342b0a21 (diff) | |
download | chromium_src-e3bd15ccedd1abf420026b84122f28796410d62a.zip chromium_src-e3bd15ccedd1abf420026b84122f28796410d62a.tar.gz chromium_src-e3bd15ccedd1abf420026b84122f28796410d62a.tar.bz2 |
Uncomment second 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
r=rtenneti
BUG=103830
Review URL: http://codereview.chromium.org/8540015
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@109721 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ipc')
-rw-r--r-- | ipc/ipc_message_macros.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ipc/ipc_message_macros.h b/ipc/ipc_message_macros.h index a3f3cdd..bcc4e57 100644 --- a/ipc/ipc_message_macros.h +++ b/ipc/ipc_message_macros.h @@ -973,7 +973,7 @@ LogFunctionMap g_log_function_mapping; #define IPC_REPLY_HANDLER(func) \ case IPC_REPLY_ID: { \ - /* TRACK_RUN_IN_IPC_HANDLER(func); TODO(jar) */ \ + TRACK_RUN_IN_IPC_HANDLER(func); \ func(ipc_message__); \ } \ break; |