You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

overlays.web.js 464B

123456789101112131415161718192021222324
  1. // @flow
  2. import {
  3. PageReloadOverlay,
  4. SlowGUMOverlay,
  5. SuspendedOverlay,
  6. UserMediaPermissionsOverlay
  7. } from './components/web';
  8. declare var interfaceConfig: Object;
  9. /**
  10. * Returns the list of available platform specific overlays.
  11. *
  12. * @returns {Array<Object>}
  13. */
  14. export function getOverlays(): Array<Object> {
  15. return [
  16. PageReloadOverlay,
  17. SuspendedOverlay,
  18. UserMediaPermissionsOverlay,
  19. SlowGUMOverlay
  20. ];
  21. }