diff options
author | oshima@google.com <oshima@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-01-18 19:23:39 +0000 |
---|---|---|
committer | oshima@google.com <oshima@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-01-18 19:23:39 +0000 |
commit | ae72fc3331cd109e409adfd47ae648f27c04d549 (patch) | |
tree | 65c560f801b364271c6acc572deffc9cdb0fbae4 /base | |
parent | 0af2c30b5f44b494a4a73f69b4d04de4c92bbcac (diff) | |
download | chromium_src-ae72fc3331cd109e409adfd47ae648f27c04d549.zip chromium_src-ae72fc3331cd109e409adfd47ae648f27c04d549.tar.gz chromium_src-ae72fc3331cd109e409adfd47ae648f27c04d549.tar.bz2 |
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
Diffstat (limited to 'base')
-rw-r--r-- | base/tuple.h | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/base/tuple.h b/base/tuple.h index 6b0d336..13d8722 100644 --- a/base/tuple.h +++ b/base/tuple.h @@ -548,13 +548,6 @@ inline void DispatchToMethod(ObjT* obj, Method method, const A& arg) { template <class ObjT, class Method, class A> 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); } |