2012-03-31 04:42:20 +00:00
|
|
|
/* -*- Mode: c++; c-basic-offset: 2; indent-tabs-mode: nil; tab-width: 40 -*- */
|
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this file,
|
|
|
|
* You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
|
|
|
|
#include "XMLHttpRequestEventTarget.h"
|
|
|
|
|
|
|
|
USING_WORKERS_NAMESPACE
|
|
|
|
|
|
|
|
void
|
2012-04-26 20:57:33 +00:00
|
|
|
XMLHttpRequestEventTarget::_trace(JSTracer* aTrc)
|
2012-03-31 04:42:20 +00:00
|
|
|
{
|
2012-04-26 20:57:33 +00:00
|
|
|
EventTarget::_trace(aTrc);
|
2012-03-31 04:42:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2012-04-26 20:57:33 +00:00
|
|
|
XMLHttpRequestEventTarget::_finalize(JSFreeOp* aFop)
|
2012-03-31 04:42:20 +00:00
|
|
|
{
|
2012-04-26 20:57:33 +00:00
|
|
|
EventTarget::_finalize(aFop);
|
2012-03-31 04:42:20 +00:00
|
|
|
}
|