diff options
author | bbudge@chromium.org <bbudge@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-11-04 22:28:12 +0000 |
---|---|---|
committer | bbudge@chromium.org <bbudge@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-11-04 22:28:12 +0000 |
commit | 753bb25fc70b560fb3539e2b63843a193ccb295a (patch) | |
tree | d42966216756764b92d90162e993ab766c307dc7 /ipc/ipc_logging.cc | |
parent | 715e27238d32ba17d2c06acf37bca40bb0a180cb (diff) | |
download | chromium_src-753bb25fc70b560fb3539e2b63843a193ccb295a.zip chromium_src-753bb25fc70b560fb3539e2b63843a193ccb295a.tar.gz chromium_src-753bb25fc70b560fb3539e2b63843a193ccb295a.tar.bz2 |
Revert https://src.chromium.org/viewvc/chrome?view=rev&revision=231330
This is a speculative revert to see if it's the cause of hanging renderers.
BUG=313112
Review URL: https://codereview.chromium.org/57783006
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@232819 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ipc/ipc_logging.cc')
-rw-r--r-- | ipc/ipc_logging.cc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/ipc/ipc_logging.cc b/ipc/ipc_logging.cc index 40f0300..65d8890 100644 --- a/ipc/ipc_logging.cc +++ b/ipc/ipc_logging.cc @@ -96,7 +96,8 @@ void Logging::OnSendLogs() { if (!sender_) return; - Message* msg = new Message(MSG_ROUTING_CONTROL, IPC_LOGGING_ID); + Message* msg = new Message( + MSG_ROUTING_CONTROL, IPC_LOGGING_ID, Message::PRIORITY_NORMAL); WriteParam(msg, queued_logs_); queued_logs_.clear(); sender_->Send(msg); |