Initial import of ephy (rev# 7126) from svn
[ephy-soc.git] / embed / mozilla / .svn / text-base / AutoJSContextStack.cpp.svn-base
blob97fa84f33d96ea56a07c30e3ce8d8513c7e75e85
1 /* 
2  *  Copyright © 2006 Christian Persch
3  *
4  *  This program is free software; you can redistribute it and/or modify
5  *  it under the terms of the GNU Lesser General Public License as published by
6  *  the Free Software Foundation; either version 2.1, or (at your option)
7  *  any later version.
8  *
9  *  This program is distributed in the hope that it will be useful,
10  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
11  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  *  GNU Lesser General Public License for more details.
13  *
14  *  You should have received a copy of the GNU Lesser General Public License
15  *  along with this program; if not, write to the Free Software
16  *  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
17  *
18  *  $Id$
19  */
21 #include "mozilla-config.h"
22 #include "config.h"
24 #include <nsServiceManagerUtils.h>
26 #include "AutoJSContextStack.h"
28 AutoJSContextStack::~AutoJSContextStack()
30         if (mStack)
31         {
32                 JSContext* cx;
33                 mStack->Pop (&cx);
35                 NS_ASSERTION(cx == nsnull, "We pushed a null context but popped a non-null context!?");
36         }
39 nsresult
40 AutoJSContextStack::Init()
42         nsresult rv;
43         mStack = do_GetService ("@mozilla.org/js/xpc/ContextStack;1", &rv);
44         if (NS_FAILED (rv)) return rv;
46         return mStack->Push (nsnull);