Bug 1277052 - Remove the unused xpcomThreadsShutdown. r=Yoric

This should be xpcom-shutdown-threads, not xpcom-threads-shutdown, but
it is unused so I just removed it.
This commit is contained in:
Andrew McCreight 2016-06-01 15:05:54 -07:00
parent 305c7e214e
commit 11d50b03e2
3 changed files with 0 additions and 7 deletions

View File

@ -1036,7 +1036,6 @@ if (!isContent) {
// All processes
this.AsyncShutdown.webWorkersShutdown = getPhase("web-workers-shutdown");
this.AsyncShutdown.xpcomWillShutdown = getPhase("xpcom-will-shutdown");
this.AsyncShutdown.xpcomThreadsShutdown = getPhase("xpcom-threads-shutdown");
this.AsyncShutdown.Barrier = Barrier;

View File

@ -238,7 +238,6 @@ function nsAsyncShutdownService() {
// All processes
"webWorkersShutdown",
"xpcomWillShutdown",
"xpcomThreadsShutdown",
]) {
let k = _k;
Object.defineProperty(this, k, {

View File

@ -213,11 +213,6 @@ interface nsIAsyncShutdownService: nsISupports {
// Don't add a barrier for content-child-shutdown because this
// makes it easier to cause shutdown hangs.
/**
* Barrier for notification xpcom-threads-shutdown.
*/
readonly attribute nsIAsyncShutdownClient xpcomThreadsShutdown;
};
%{C++