aboutsummaryrefslogblamecommitdiff
path: root/e2e/ambassador/src/client/windows.js
blob: f92405a2868c4fbfd3b04cff97806ef97e54159a (plain) (tree)
1
2
3
4
5
6
7
8
9

                                             
                             
                         
                   
                         








                              






                               
import {
  WINDOWS_CREATE, WINDOWS_REMOVE, WINDOWS_GET
} from '../shared/messages';
import * as ipc from './ipc';

const create = (url) => {
  return ipc.send({
    type: WINDOWS_CREATE,
    url,
  });
};

const remove = (windowId) => {
  return ipc.send({
    type: WINDOWS_REMOVE,
    windowId,
  });
};

const get = (windowId) => {
  return ipc.send({
    type: WINDOWS_GET,
    windowId,
  });
};

export { create, remove, get };