Commit ae72fc33 authored by oshima@google.com's avatar oshima@google.com

Revert "Adding CHECKs to troubleshoot the crash issue ..."

Revert "Adding CHECKs to troubleshoot the crash issue intuple.h/browser_render_process_host.cc (see bug description)"

This reverts commit 29801f4598cf1a605c6e1a7b0295e0ac29f27b59.

BUG=chromium-os:7327
TEST=none

Review URL: http://codereview.chromium.org/6323003

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@71680 0039d316-1c4b-4281-b951-d872f2087c98
parent 0af2c30b
...@@ -548,13 +548,6 @@ inline void DispatchToMethod(ObjT* obj, Method method, const A& arg) { ...@@ -548,13 +548,6 @@ inline void DispatchToMethod(ObjT* obj, Method method, const A& arg) {
template <class ObjT, class Method, class A> template <class ObjT, class Method, class A>
inline void DispatchToMethod(ObjT* obj, Method method, const Tuple1<A>& arg) { inline void DispatchToMethod(ObjT* obj, Method method, const Tuple1<A>& arg) {
#if defined(OS_CHROMEOS)
// To troubleshoot crosbug.com/7327.
CHECK(obj);
CHECK(&arg);
CHECK(method);
#endif
(obj->*method)(arg.a); (obj->*method)(arg.a);
} }
......
...@@ -967,12 +967,6 @@ bool BrowserRenderProcessHost::OnMessageReceived(const IPC::Message& msg) { ...@@ -967,12 +967,6 @@ bool BrowserRenderProcessHost::OnMessageReceived(const IPC::Message& msg) {
if (deleting_soon_) if (deleting_soon_)
return false; return false;
#if defined(OS_CHROMEOS)
// To troubleshoot crosbug.com/7327.
CHECK(this);
CHECK(&msg);
#endif
mark_child_process_activity_time(); mark_child_process_activity_time();
if (msg.routing_id() == MSG_ROUTING_CONTROL) { if (msg.routing_id() == MSG_ROUTING_CONTROL) {
// Dispatch control messages. // Dispatch control messages.
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment