summaryrefslogtreecommitdiffstats
path: root/ipc/ipc_channel_common.cc
diff options
context:
space:
mode:
authorerikchen <erikchen@chromium.org>2015-09-21 16:39:05 -0700
committerCommit bot <commit-bot@chromium.org>2015-09-21 23:40:20 +0000
commitdbc8c1869a4fd0493150c008106be720eba86205 (patch)
tree26ba74aa76009fb703709a4b1f62b21818b0f565 /ipc/ipc_channel_common.cc
parent5cc3f0a27b1c73102bfeee73d6fe24e3400de633 (diff)
downloadchromium_src-dbc8c1869a4fd0493150c008106be720eba86205.zip
chromium_src-dbc8c1869a4fd0493150c008106be720eba86205.tar.gz
chromium_src-dbc8c1869a4fd0493150c008106be720eba86205.tar.bz2
Revert of Reland debugging for ipc related crash. (patchset #1 id:1 of https://codereview.chromium.org/1354063002/ )
Reason for revert: Supposedly, this CL only changes the signature of the crash, not the presence of the crash. There is some (but not totally clear) evidence that this CL is causing a crash itself. https://code.google.com/p/chromium/issues/detail?id=527588#c32 Original issue's description: > Reland debugging for ipc related crash. > > This CL is almost identical to https://codereview.chromium.org/1350823002/. The > only difference is that the part of the CL that causes the crash has been > omitted. > > BUG=527588 > > Committed: https://crrev.com/a7502c6dff276bce3c76d680c5d613cb6ece19be > Cr-Commit-Position: refs/heads/master@{#349828} TBR=avi@chromium.org,tsepez@chromium.org NOPRESUBMIT=true NOTREECHECKS=true NOTRY=true BUG=527588 Review URL: https://codereview.chromium.org/1354863004 Cr-Commit-Position: refs/heads/master@{#350062}
Diffstat (limited to 'ipc/ipc_channel_common.cc')
-rw-r--r--ipc/ipc_channel_common.cc12
1 files changed, 0 insertions, 12 deletions
diff --git a/ipc/ipc_channel_common.cc b/ipc/ipc_channel_common.cc
index 1a227ad..5438c66 100644
--- a/ipc/ipc_channel_common.cc
+++ b/ipc/ipc_channel_common.cc
@@ -6,8 +6,6 @@
namespace IPC {
-static Channel::MessageVerifier g_message_verifier = nullptr;
-
// static
scoped_ptr<Channel> Channel::CreateClient(
const IPC::ChannelHandle& channel_handle,
@@ -58,16 +56,6 @@ scoped_ptr<Channel> Channel::CreateServer(
Channel::~Channel() {
}
-// static
-void Channel::SetMessageVerifier(MessageVerifier verifier) {
- g_message_verifier = verifier;
-}
-
-// static
-Channel::MessageVerifier Channel::GetMessageVerifier() {
- return g_message_verifier;
-}
-
bool Channel::IsSendThreadSafe() const {
return false;
}