Roll src/third_party/WebKit d9c6159:8139f33 (svn 201974:201975)
[chromium-blink-merge.git] / chrome / test / data / chromeos / file_manager / cws_container_mock / main.js
blob4b2dfe1a2fa3397397901b722f7b61d1ba8ad481
1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 var cwsContainerMock = {};
6 (function() {
7   // This ID will be checked in the test.
8   var DUMMY_ITEM_ID = 'DUMMY_ITEM_ID_FOR_TEST';
10   var origin = null;
11   var data = null;
12   var source = null;
14   cwsContainerMock.onMessage = function (message) {
15     data = message.data;
16     source = message.source;
17     origin = message.origin;
19     switch (data['message']) {
20       case 'initialize':
21         cwsContainerMock.onInitialize();
22         break;
23       case 'install_success':
24         cwsContainerMock.onInstallSuccess();
25         break;
26     };
27   }
29   cwsContainerMock.onInitialize = function() {
30     if (source && origin)
31       source.postMessage({message: 'widget_loaded'}, origin);
32   };
34   cwsContainerMock.onInstallSuccess = function() {
35     if (source && origin)
36       source.postMessage({
37           message: 'after_install',
38           item_id: DUMMY_ITEM_ID
39       }, origin);
40   };
42   cwsContainerMock.onInstallButton = function() {
43     if (source && origin) {
44       source.postMessage(
45           {message: 'before_install', item_id:DUMMY_ITEM_ID}, origin);
46     }
47   };
49 })();
51 function onInstallButton() {
52   cwsContainerMock.onInstallButton();
55 window.addEventListener('message', cwsContainerMock.onMessage);