fork download
  1. // extensions/common/mojom/keep_alive.mojom.js is auto generated by mojom_bindings_generator.py, do not edit
  2.  
  3. // Copyright 2014 The Chromium Authors
  4. // Use of this source code is governed by a BSD-style license that can be
  5. // found in the LICENSE file.
  6.  
  7. 'use strict';
  8.  
  9. (function() {
  10. var mojomId = 'extensions/common/mojom/keep_alive.mojom';
  11. if (mojo.internal.isMojomLoaded(mojomId)) {
  12. console.warn('The following mojom is loaded multiple times: ' + mojomId);
  13. return;
  14. }
  15. mojo.internal.markMojomLoaded(mojomId);
  16. var bindings = mojo;
  17. var associatedBindings = mojo;
  18. var codec = mojo.internal;
  19. var validator = mojo.internal;
  20.  
  21. var exports = mojo.internal.exposeNamespace('extensions');
  22.  
  23.  
  24.  
  25.  
  26. function KeepAlivePtr(handleOrPtrInfo) {
  27. this.ptr = new bindings.InterfacePtrController(KeepAlive,
  28. handleOrPtrInfo);
  29. }
  30.  
  31. function KeepAliveAssociatedPtr(associatedInterfacePtrInfo) {
  32. this.ptr = new associatedBindings.AssociatedInterfacePtrController(
  33. KeepAlive, associatedInterfacePtrInfo);
  34. }
  35.  
  36. KeepAliveAssociatedPtr.prototype =
  37. Object.create(KeepAlivePtr.prototype);
  38. KeepAliveAssociatedPtr.prototype.constructor =
  39. KeepAliveAssociatedPtr;
  40.  
  41. function KeepAliveProxy(receiver) {
  42. this.receiver_ = receiver;
  43. }
  44.  
  45. function KeepAliveStub(delegate) {
  46. this.delegate_ = delegate;
  47. }
  48.  
  49. KeepAliveStub.prototype.accept = function(message) {
  50. var reader = new codec.MessageReader(message);
  51. switch (reader.messageName) {
  52. default:
  53. return false;
  54. }
  55. };
  56.  
  57. KeepAliveStub.prototype.acceptWithResponder =
  58. function(message, responder) {
  59. var reader = new codec.MessageReader(message);
  60. switch (reader.messageName) {
  61. default:
  62. return false;
  63. }
  64. };
  65.  
  66. function validateKeepAliveRequest(messageValidator) {
  67. return validator.validationError.NONE;
  68. }
  69.  
  70. function validateKeepAliveResponse(messageValidator) {
  71. return validator.validationError.NONE;
  72. }
  73.  
  74. var KeepAlive = {
  75. name: 'extensions.KeepAlive',
  76. kVersion: 0,
  77. ptrClass: KeepAlivePtr,
  78. proxyClass: KeepAliveProxy,
  79. stubClass: KeepAliveStub,
  80. validateRequest: validateKeepAliveRequest,
  81. validateResponse: null,
  82. };
  83. KeepAliveStub.prototype.validator = validateKeepAliveRequest;
  84. KeepAliveProxy.prototype.validator = null;
  85. exports.KeepAlive = KeepAlive;
  86. exports.KeepAlivePtr = KeepAlivePtr;
  87. exports.KeepAliveAssociatedPtr = KeepAliveAssociatedPtr;
  88. })();
Success #stdin #stdout 0.03s 25952KB
stdin
Standard input is empty
stdout
// extensions/common/mojom/keep_alive.mojom.js is auto generated by mojom_bindings_generator.py, do not edit

// Copyright 2014 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

'use strict';

(function() {
  var mojomId = 'extensions/common/mojom/keep_alive.mojom';
  if (mojo.internal.isMojomLoaded(mojomId)) {
    console.warn('The following mojom is loaded multiple times: ' + mojomId);
    return;
  }
  mojo.internal.markMojomLoaded(mojomId);
  var bindings = mojo;
  var associatedBindings = mojo;
  var codec = mojo.internal;
  var validator = mojo.internal;

  var exports = mojo.internal.exposeNamespace('extensions');




  function KeepAlivePtr(handleOrPtrInfo) {
    this.ptr = new bindings.InterfacePtrController(KeepAlive,
                                                   handleOrPtrInfo);
  }

  function KeepAliveAssociatedPtr(associatedInterfacePtrInfo) {
    this.ptr = new associatedBindings.AssociatedInterfacePtrController(
        KeepAlive, associatedInterfacePtrInfo);
  }

  KeepAliveAssociatedPtr.prototype =
      Object.create(KeepAlivePtr.prototype);
  KeepAliveAssociatedPtr.prototype.constructor =
      KeepAliveAssociatedPtr;

  function KeepAliveProxy(receiver) {
    this.receiver_ = receiver;
  }

  function KeepAliveStub(delegate) {
    this.delegate_ = delegate;
  }

  KeepAliveStub.prototype.accept = function(message) {
    var reader = new codec.MessageReader(message);
    switch (reader.messageName) {
    default:
      return false;
    }
  };

  KeepAliveStub.prototype.acceptWithResponder =
      function(message, responder) {
    var reader = new codec.MessageReader(message);
    switch (reader.messageName) {
    default:
      return false;
    }
  };

  function validateKeepAliveRequest(messageValidator) {
    return validator.validationError.NONE;
  }

  function validateKeepAliveResponse(messageValidator) {
    return validator.validationError.NONE;
  }

  var KeepAlive = {
    name: 'extensions.KeepAlive',
    kVersion: 0,
    ptrClass: KeepAlivePtr,
    proxyClass: KeepAliveProxy,
    stubClass: KeepAliveStub,
    validateRequest: validateKeepAliveRequest,
    validateResponse: null,
  };
  KeepAliveStub.prototype.validator = validateKeepAliveRequest;
  KeepAliveProxy.prototype.validator = null;
  exports.KeepAlive = KeepAlive;
  exports.KeepAlivePtr = KeepAlivePtr;
  exports.KeepAliveAssociatedPtr = KeepAliveAssociatedPtr;
})();