diff options
author | phajdan.jr@chromium.org <phajdan.jr@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-03-20 20:56:55 +0000 |
---|---|---|
committer | phajdan.jr@chromium.org <phajdan.jr@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-03-20 20:56:55 +0000 |
commit | 4c2c1dbc004ac567b0b5af1e5b6ff87505d1f1af (patch) | |
tree | 1898b659023cabf785118ae89e23fcd89569310b /chrome/common/ipc_logging.cc | |
parent | e66de89ab98e011edcda88974421417eec153f9a (diff) | |
download | chromium_src-4c2c1dbc004ac567b0b5af1e5b6ff87505d1f1af.zip chromium_src-4c2c1dbc004ac567b0b5af1e5b6ff87505d1f1af.tar.gz chromium_src-4c2c1dbc004ac567b0b5af1e5b6ff87505d1f1af.tar.bz2 |
Better IPC logging on POSIX:
- enable one more point of logging
- enable decoding of automation messages in log output
Review URL: http://codereview.chromium.org/50058
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@12211 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/common/ipc_logging.cc')
-rw-r--r-- | chrome/common/ipc_logging.cc | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/chrome/common/ipc_logging.cc b/chrome/common/ipc_logging.cc index e08ca2a..d02b3b2 100644 --- a/chrome/common/ipc_logging.cc +++ b/chrome/common/ipc_logging.cc @@ -22,7 +22,11 @@ #include "chrome/common/chrome_switches.h" #include "chrome/common/ipc_sync_message.h" #include "chrome/common/ipc_message_utils.h" + +// This include list should contain all _messages.h header files so that they +// can get *MsgLog function etc. This makes ipc logs much more informative. #include "chrome/common/render_messages.h" +#include "chrome/test/automation/automation_messages.h" #if defined(OS_WIN) // TODO(port): These messages will need to be ported at some point #include "chrome/common/plugin_messages.h" |