| Index: chrome/browser/extensions/window_open_apitest.cc
|
| diff --git a/chrome/browser/extensions/window_open_apitest.cc b/chrome/browser/extensions/window_open_apitest.cc
|
| index ef3352ab2ab517cdfab9d4fca752e0a8b1548e65..f2d77fbfe07ce6dcc59be1f40b46218037b8662a 100644
|
| --- a/chrome/browser/extensions/window_open_apitest.cc
|
| +++ b/chrome/browser/extensions/window_open_apitest.cc
|
| @@ -392,7 +392,7 @@ IN_PROC_BROWSER_TEST_F(ExtensionBrowserTest, WindowOpenExtension) {
|
|
|
| bool result = false;
|
| ASSERT_TRUE(content::ExecuteJavaScriptAndExtractBool(
|
| - newtab->GetRenderViewHost(), L"", L"testExtensionApi()", &result));
|
| + newtab->GetRenderViewHost(), "", "testExtensionApi()", &result));
|
| EXPECT_TRUE(result);
|
| }
|
|
|
| @@ -429,6 +429,6 @@ IN_PROC_BROWSER_TEST_F(ExtensionBrowserTest, WindowOpenNoPrivileges) {
|
| // Extension API should succeed.
|
| bool result = false;
|
| ASSERT_TRUE(content::ExecuteJavaScriptAndExtractBool(
|
| - newtab->GetRenderViewHost(), L"", L"testExtensionApi()", &result));
|
| + newtab->GetRenderViewHost(), "", "testExtensionApi()", &result));
|
| EXPECT_TRUE(result);
|
| }
|
|
|