Remove unused code.
authorsgjesse@chromium.org <sgjesse@chromium.org@ce2b1a6d-e550-0410-aec6-3dcde31c8c00>
Thu, 8 Jan 2009 10:40:09 +0000 (10:40 +0000)
committersgjesse@chromium.org <sgjesse@chromium.org@ce2b1a6d-e550-0410-aec6-3dcde31c8c00>
Thu, 8 Jan 2009 10:40:09 +0000 (10:40 +0000)
Review URL: http://codereview.chromium.org/17410

git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@1044 ce2b1a6d-e550-0410-aec6-3dcde31c8c00

src/debug-delay.js

index 32a7151c6f0cd06c2558a16f6773d20c621d1bd5..24b83a53ccbbf17fac419fc1374f89a1cee315c0 100644 (file)
@@ -958,40 +958,6 @@ DebugCommandProcessor.prototype.responseIsRunning = function (response) {
 }
 
 
-function RequestPacket(command) {
-  this.seq = 0;
-  this.type = 'request';
-  this.command = command;
-}
-
-
-RequestPacket.prototype.toJSONProtocol = function() {
-  // Encode the protocol header.
-  var json = '{';
-  json += '"seq":' + this.seq;
-  json += ',"type":"' + this.type + '"';
-  if (this.command) {
-    json += ',"command":' + StringToJSON_(this.command);
-  }
-  if (this.arguments) {
-    json += ',"arguments":';
-    // Encode the arguments part.
-    if (this.arguments.toJSONProtocol) {
-      json += this.arguments.toJSONProtocol()
-    } else {
-      json += SimpleObjectToJSON_(this.arguments);
-    }
-  }
-  json += '}';
-  return json;
-}
-
-
-DebugCommandProcessor.prototype.createRequest = function(command) {
-  return new RequestPacket(command);
-};
-
-
 function ResponsePacket(request) {
   // Build the initial response from the request.
   this.seq = next_response_seq++;