summaryrefslogtreecommitdiffstats
path: root/base/message_loop/message_loop_test.h
diff options
context:
space:
mode:
authorcpu@chromium.org <cpu@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-01-03 21:25:26 +0000
committercpu@chromium.org <cpu@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-01-03 21:25:26 +0000
commit62a314e56fbfbf90e89462166e63aff6715fa3b0 (patch)
tree39ef4016af38b3d03f3e96621d79767a1aeef6bc /base/message_loop/message_loop_test.h
parentf88d7e8756f4672b95145590b75b1277c9ac1faa (diff)
downloadchromium_src-62a314e56fbfbf90e89462166e63aff6715fa3b0.zip
chromium_src-62a314e56fbfbf90e89462166e63aff6715fa3b0.tar.gz
chromium_src-62a314e56fbfbf90e89462166e63aff6715fa3b0.tar.bz2
removing SEH exception restoration #2
The only real caller was the NPAPI plugin code trying to prevent flash 9 from stealing the unhandled exception handler. The need for that is long gone. This is a followup of https://codereview.chromium.org/122553003/ TBR=mark BUG=none Review URL: https://codereview.chromium.org/122583004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@242926 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'base/message_loop/message_loop_test.h')
-rw-r--r--base/message_loop/message_loop_test.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/base/message_loop/message_loop_test.h b/base/message_loop/message_loop_test.h
index 5d1a4f5..3d9889c 100644
--- a/base/message_loop/message_loop_test.h
+++ b/base/message_loop/message_loop_test.h
@@ -19,7 +19,6 @@ namespace test {
typedef MessageLoop::MessagePumpFactory MessagePumpFactory;
void RunTest_PostTask(MessagePumpFactory factory);
-void RunTest_PostTask_SEH(MessagePumpFactory factory);
void RunTest_PostDelayedTask_Basic(MessagePumpFactory factory);
void RunTest_PostDelayedTask_InDelayOrder(MessagePumpFactory factory);
void RunTest_PostDelayedTask_InPostOrder(MessagePumpFactory factory);
@@ -52,9 +51,6 @@ void RunTest_RecursivePosts(MessagePumpFactory factory);
TEST(MessageLoopTestType##id, PostTask) { \
base::test::RunTest_PostTask(factory); \
} \
- TEST(MessageLoopTestType##id, PostTask_SEH) { \
- base::test::RunTest_PostTask_SEH(factory); \
- } \
TEST(MessageLoopTestType##id, PostDelayedTask_Basic) { \
base::test::RunTest_PostDelayedTask_Basic(factory); \
} \