Bug 889714 - Remove unused ExitCode machinery. r=mrbkap

This stuff is cribbed from xpcshell, where it makes sense. But it doens't really
make sense in the IPC context, and doesn't appear to be used either.
This commit is contained in:
Bobby Holley 2013-07-16 20:38:45 -07:00
parent 4e2f2699cb
commit 848172cd58
2 changed files with 0 additions and 19 deletions

View File

@ -46,9 +46,6 @@
#include "TestShellChild.h"
#include "TestShellParent.h"
#define EXITCODE_RUNTIME_ERROR 3
#define EXITCODE_FILE_NOT_FOUND 4
using mozilla::ipc::XPCShellEnvironment;
using mozilla::ipc::TestShellChild;
using mozilla::ipc::TestShellParent;
@ -166,9 +163,6 @@ ScriptErrorReporter(JSContext *cx,
}
fputs("^\n", stderr);
out:
if (!JSREPORT_IS_WARNING(report->flags)) {
Environment(cx)->SetExitCode(EXITCODE_RUNTIME_ERROR);
}
JS_free(cx, prefix);
}
@ -318,11 +312,7 @@ Quit(JSContext *cx,
unsigned argc,
JS::Value *vp)
{
int exitCode = 0;
JS_ConvertArguments(cx, argc, JS_ARGV(cx, vp), "/ i", &exitCode);
XPCShellEnvironment* env = Environment(cx);
env->SetExitCode(exitCode);
env->SetIsQuitting();
return JS_FALSE;
@ -661,7 +651,6 @@ XPCShellEnvironment::CreateEnvironment()
XPCShellEnvironment::XPCShellEnvironment()
: mCx(NULL),
mJSPrincipals(NULL),
mExitCode(0),
mQuitting(JS_FALSE)
{
}

View File

@ -43,13 +43,6 @@ public:
return mCx;
}
void SetExitCode(int aExitCode) {
mExitCode = aExitCode;
}
int ExitCode() {
return mExitCode;
}
void SetIsQuitting() {
mQuitting = JS_TRUE;
}
@ -66,7 +59,6 @@ private:
nsAutoJSValHolder mGlobalHolder;
JSPrincipals* mJSPrincipals;
int mExitCode;
JSBool mQuitting;
};