| Index: chrome/browser/extensions/extension_incognito_apitest.cc
|
| ===================================================================
|
| --- chrome/browser/extensions/extension_incognito_apitest.cc (revision 174946)
|
| +++ chrome/browser/extensions/extension_incognito_apitest.cc (working copy)
|
| @@ -37,9 +37,8 @@
|
| // Verify the script didn't run.
|
| bool result = false;
|
| ASSERT_TRUE(content::ExecuteJavaScriptAndExtractBool(
|
| - tab->GetRenderViewHost(),
|
| - "",
|
| - "window.domAutomationController.send(document.title == 'Unmodified')",
|
| + tab->GetRenderViewHost(), L"",
|
| + L"window.domAutomationController.send(document.title == 'Unmodified')",
|
| &result));
|
| EXPECT_TRUE(result);
|
| }
|
| @@ -73,9 +72,8 @@
|
| // Verify the script ran.
|
| bool result = false;
|
| ASSERT_TRUE(content::ExecuteJavaScriptAndExtractBool(
|
| - tab->GetRenderViewHost(),
|
| - "",
|
| - "window.domAutomationController.send(document.title == 'modified')",
|
| + tab->GetRenderViewHost(), L"",
|
| + L"window.domAutomationController.send(document.title == 'modified')",
|
| &result));
|
| EXPECT_TRUE(result);
|
| }
|
|
|