| Index: chrome/browser/nacl_host/pnacl_host_unittest.cc
|
| diff --git a/chrome/browser/nacl_host/pnacl_host_unittest.cc b/chrome/browser/nacl_host/pnacl_host_unittest.cc
|
| index 7796aa61ab12ede8a22451010dd7f2d4cce0c0c8..cb5e8ef9bdd0a343559bd68d2e525260d90054f1 100644
|
| --- a/chrome/browser/nacl_host/pnacl_host_unittest.cc
|
| +++ b/chrome/browser/nacl_host/pnacl_host_unittest.cc
|
| @@ -73,7 +73,7 @@ TEST_F(PnaclHostTest, BasicMiss) {
|
| base::RunLoop().RunUntilIdle();
|
| EXPECT_PENDING_TRANSLATIONS(1);
|
| ExpectCallbackCount(1);
|
| - host_->TranslationFinished(0, 0);
|
| + host_->TranslationFinished(0, 0, true);
|
| EXPECT_PENDING_TRANSLATIONS(0);
|
| host_->RendererClosing(0);
|
| }
|
| @@ -89,7 +89,7 @@ TEST_F(PnaclHostTest, BadArguments) {
|
| base::Bind(&PnaclHostTest::CallbackExpectMiss, base::Unretained(this)));
|
|
|
| EXPECT_PENDING_TRANSLATIONS(1);
|
| - host_->TranslationFinished(0, 1); // nonexistent translation
|
| + host_->TranslationFinished(0, 1, true); // nonexistent translation
|
| EXPECT_PENDING_TRANSLATIONS(1);
|
| host_->RendererClosing(1); // nonexistent renderer
|
| EXPECT_PENDING_TRANSLATIONS(1);
|
|
|