| Index: chrome/test/data/extensions/platform_apps/app_view/shim/main.js
|
| diff --git a/chrome/test/data/extensions/platform_apps/app_view/shim/main.js b/chrome/test/data/extensions/platform_apps/app_view/shim/main.js
|
| index 5b356a2d061d6d6dee98145108f83e67ad6758ff..4d7f87ddf59075b26500b8ac0c73305d9caa91af 100644
|
| --- a/chrome/test/data/extensions/platform_apps/app_view/shim/main.js
|
| +++ b/chrome/test/data/extensions/platform_apps/app_view/shim/main.js
|
| @@ -73,7 +73,7 @@ function testAppViewBasic(appToEmbed) {
|
| LOG('appToEmbed ' + appToEmbed);
|
| // Step 1: Attempt to connect to a non-existant app.
|
| LOG('attempting to connect to non-existant app.');
|
| - appview.connect('abc123', {}, function(success) {
|
| + appview.connect('abc123', undefined, function(success) {
|
| // Make sure we fail.
|
| if (success) {
|
| embedder.test.fail();
|
| @@ -82,7 +82,7 @@ function testAppViewBasic(appToEmbed) {
|
| LOG('failed to connect to non-existant app.');
|
| LOG('attempting to connect to known app.');
|
| // Step 2: Attempt to connect to an app we know exists.
|
| - appview.connect(appToEmbed, {}, function(success) {
|
| + appview.connect(appToEmbed, undefined, function(success) {
|
| // Make sure we don't fail.
|
| if (!success) {
|
| embedder.test.fail();
|
|
|