Bug 881333 - Use accessor methods for cx->compartment and cx->runtime, r=luke.

This commit is contained in:
Brian Hackett
2013-06-10 15:22:18 -06:00
parent d27b69de9a
commit c0af46133d
104 changed files with 1072 additions and 1059 deletions

View File

@@ -13,7 +13,7 @@ using namespace js;
void *
TempAllocPolicy::onOutOfMemory(void *p, size_t nbytes)
{
return cx_->runtime->onOutOfMemory(p, nbytes, cx_);
return cx_->runtime()->onOutOfMemory(p, nbytes, cx_);
}
void