Bug 885804: Renaming in js/layout/ipc r=roc

This commit is contained in:
David Zbarsky
2013-07-08 11:48:39 -04:00
parent 89b9f3844a
commit a9265a1b96
8 changed files with 18 additions and 18 deletions

View File

@@ -18,13 +18,13 @@ using mozilla::ipc::PTestShellCommandParent;
using mozilla::dom::ContentParent;
PTestShellCommandParent*
TestShellParent::AllocPTestShellCommand(const nsString& aCommand)
TestShellParent::AllocPTestShellCommandParent(const nsString& aCommand)
{
return new TestShellCommandParent();
}
bool
TestShellParent::DeallocPTestShellCommand(PTestShellCommandParent* aActor)
TestShellParent::DeallocPTestShellCommandParent(PTestShellCommandParent* aActor)
{
delete aActor;
return true;
@@ -74,7 +74,7 @@ TestShellCommandParent::RunCallback(const nsString& aResponse)
JS::Rooted<JS::Value> rval(mCx);
JSBool ok = JS_CallFunctionValue(mCx, global, mCallback, 1, strVal.address(),
rval.address());
rval.address());
NS_ENSURE_TRUE(ok, JS_FALSE);
return JS_TRUE;