Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(3510)

Unified Diff: chrome/browser/spellchecker/spellcheck_message_filter_mac_browsertest.cc

Issue 292443004: Remove IPC_BEGIN_MESSAGE_MAP_EX macro since r270839 made all bad IPCs kill their child processes. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 6 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/spellchecker/spellcheck_message_filter_mac_browsertest.cc
===================================================================
--- chrome/browser/spellchecker/spellcheck_message_filter_mac_browsertest.cc (revision 271040)
+++ chrome/browser/spellchecker/spellcheck_message_filter_mac_browsertest.cc (working copy)
@@ -45,9 +45,7 @@
SpellCheckHostMsg_RequestTextCheck to_be_received(
123, 456, base::UTF8ToUTF16("zz."), std::vector<SpellCheckMarker>());
- bool handled = false;
- target->OnMessageReceived(to_be_received, &handled);
- EXPECT_TRUE(handled);
+ target->OnMessageReceived(to_be_received);
base::MessageLoopForUI::current()->Run();
EXPECT_EQ(1U, target->sent_messages_.size());
« no previous file with comments | « chrome/browser/spellchecker/spellcheck_message_filter_mac.cc ('k') | chrome/renderer/chrome_mock_render_thread.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698