Bug 937317 - Replace all instance of null cx pushing with AutoSystemCaller. r=bz

This is an easy bonus chunk of the work to phase out cx pushing in the browser.
This commit is contained in:
Bobby Holley 2013-12-05 21:34:17 -08:00
parent ee0e38d892
commit 901b658c25
15 changed files with 69 additions and 89 deletions

View File

@ -14,7 +14,6 @@
#include "States.h" #include "States.h"
#include "nsContentList.h" #include "nsContentList.h"
#include "nsCxPusher.h"
#include "mozilla/dom/HTMLInputElement.h" #include "mozilla/dom/HTMLInputElement.h"
#include "nsIAccessibleRelation.h" #include "nsIAccessibleRelation.h"
#include "nsIDOMNSEditableElement.h" #include "nsIDOMNSEditableElement.h"
@ -26,6 +25,7 @@
#include "nsISelectionController.h" #include "nsISelectionController.h"
#include "nsIServiceManager.h" #include "nsIServiceManager.h"
#include "nsITextControlFrame.h" #include "nsITextControlFrame.h"
#include "mozilla/dom/ScriptSettings.h"
#include "mozilla/FloatingPoint.h" #include "mozilla/FloatingPoint.h"
#include "mozilla/Preferences.h" #include "mozilla/Preferences.h"
@ -470,8 +470,7 @@ HTMLTextFieldAccessible::GetEditor() const
// nsGenericHTMLElement::GetEditor has a security check. // nsGenericHTMLElement::GetEditor has a security check.
// Make sure we're not restricted by the permissions of // Make sure we're not restricted by the permissions of
// whatever script is currently running. // whatever script is currently running.
nsCxPusher pusher; mozilla::dom::AutoSystemCaller asc;
pusher.PushNull();
nsCOMPtr<nsIEditor> editor; nsCOMPtr<nsIEditor> editor;
editableElt->GetEditor(getter_AddRefs(editor)); editableElt->GetEditor(getter_AddRefs(editor));

View File

@ -39,7 +39,6 @@
#include "nsIDOMNode.h" #include "nsIDOMNode.h"
#include "nsContentUtils.h" #include "nsContentUtils.h"
#include "nsCxPusher.h"
#include "nsLayoutUtils.h" #include "nsLayoutUtils.h"
#include "nsIContentPolicy.h" #include "nsIContentPolicy.h"
#include "nsEventDispatcher.h" #include "nsEventDispatcher.h"
@ -47,6 +46,7 @@
#include "mozAutoDocUpdate.h" #include "mozAutoDocUpdate.h"
#include "mozilla/dom/Element.h" #include "mozilla/dom/Element.h"
#include "mozilla/dom/ScriptSettings.h"
#if defined(XP_WIN) #if defined(XP_WIN)
// Undefine LoadImage to prevent naming conflict with Windows. // Undefine LoadImage to prevent naming conflict with Windows.
@ -54,6 +54,7 @@
#endif #endif
using namespace mozilla; using namespace mozilla;
using mozilla::dom::AutoSystemCaller;
#ifdef DEBUG_chb #ifdef DEBUG_chb
static void PrintReqURL(imgIRequest* req) { static void PrintReqURL(imgIRequest* req) {
@ -1194,11 +1195,8 @@ nsImageLoadingContent::ClearPendingRequest(nsresult aReason,
if (!mPendingRequest) if (!mPendingRequest)
return; return;
// Push a null JSContext on the stack so that code that runs within // See bug 604262.
// the below code doesn't think it's being called by JS. See bug AutoSystemCaller asc;
// 604262.
nsCxPusher pusher;
pusher.PushNull();
// Deregister this image from the refresh driver so it no longer receives // Deregister this image from the refresh driver so it no longer receives
// notifications. // notifications.
@ -1259,10 +1257,9 @@ nsImageLoadingContent::BindToTree(nsIDocument* aDocument, nsIContent* aParent,
if (!aDocument) if (!aDocument)
return; return;
// Push a null JSContext on the stack so that callbacks triggered by the // Make sure the callbacks triggered by the below code don't think they're
// below code won't think they're being called from JS. // being called from JS.
nsCxPusher pusher; AutoSystemCaller asc;
pusher.PushNull();
TrackImage(mCurrentRequest); TrackImage(mCurrentRequest);
TrackImage(mPendingRequest); TrackImage(mPendingRequest);
@ -1279,10 +1276,9 @@ nsImageLoadingContent::UnbindFromTree(bool aDeep, bool aNullParent)
if (!doc) if (!doc)
return; return;
// Push a null JSContext on the stack so that callbacks triggered by the // Make sure the callbacks triggered by the below code don't think they're
// below code won't think they're being called from JS. // being called from JS.
nsCxPusher pusher; AutoSystemCaller asc;
pusher.PushNull();
UntrackImage(mCurrentRequest); UntrackImage(mCurrentRequest);
UntrackImage(mPendingRequest); UntrackImage(mPendingRequest);

View File

@ -38,11 +38,11 @@
#include "mozilla/Selection.h" #include "mozilla/Selection.h"
#include "nsEventListenerManager.h" #include "nsEventListenerManager.h"
#include "nsContentUtils.h" #include "nsContentUtils.h"
#include "nsCxPusher.h"
#include "mozilla/Preferences.h" #include "mozilla/Preferences.h"
#include "nsTextNode.h" #include "nsTextNode.h"
#include "nsIController.h" #include "nsIController.h"
#include "mozilla/TextEvents.h" #include "mozilla/TextEvents.h"
#include "mozilla/dom/ScriptSettings.h"
using namespace mozilla; using namespace mozilla;
using namespace mozilla::dom; using namespace mozilla::dom;
@ -1283,13 +1283,12 @@ nsTextEditorState::PrepareEditor(const nsAString *aValue)
// What follows is a bit of a hack. The editor uses the public DOM APIs // What follows is a bit of a hack. The editor uses the public DOM APIs
// for its content manipulations, and it causes it to fail some security // for its content manipulations, and it causes it to fail some security
// checks deep inside when initializing. So we push a null JSContext // checks deep inside when initializing. So we explictly make it clear that
// on the JS stack here to make it clear that we're native code. // we're native code.
// Note that any script that's directly trying to access our value // Note that any script that's directly trying to access our value
// has to be going through some scriptable object to do that and that // has to be going through some scriptable object to do that and that
// already does the relevant security checks. // already does the relevant security checks.
nsCxPusher pusher; AutoSystemCaller asc;
pusher.PushNull();
rv = newEditor->Init(domdoc, GetRootNode(), mSelCon, editorFlags); rv = newEditor->Init(domdoc, GetRootNode(), mSelCon, editorFlags);
NS_ENSURE_SUCCESS(rv, rv); NS_ENSURE_SUCCESS(rv, rv);
@ -1777,9 +1776,8 @@ nsTextEditorState::GetValue(nsAString& aValue, bool aIgnoreWrap) const
// XXXbz if we could just get the textContent of our anonymous content (eg // XXXbz if we could just get the textContent of our anonymous content (eg
// if plaintext editor didn't create <br> nodes all over), we wouldn't need // if plaintext editor didn't create <br> nodes all over), we wouldn't need
// this. // this.
{ /* Scope for context pusher */ { /* Scope for AutoSystemCaller. */
nsCxPusher pusher; AutoSystemCaller asc;
pusher.PushNull();
mEditor->OutputToString(NS_LITERAL_STRING("text/plain"), flags, mEditor->OutputToString(NS_LITERAL_STRING("text/plain"), flags,
aValue); aValue);
@ -1857,9 +1855,8 @@ nsTextEditorState::SetValue(const nsAString& aValue, bool aUserInput,
// Time to mess with our security context... See comments in GetValue() // Time to mess with our security context... See comments in GetValue()
// for why this is needed. Note that we have to do this up here, because // for why this is needed. Note that we have to do this up here, because
// otherwise SelectAll() will fail. // otherwise SelectAll() will fail.
{ /* Scope for context pusher */ {
nsCxPusher pusher; AutoSystemCaller asc;
pusher.PushNull();
nsCOMPtr<nsISelection> domSel; nsCOMPtr<nsISelection> domSel;
nsCOMPtr<nsISelectionPrivate> selPriv; nsCOMPtr<nsISelectionPrivate> selPriv;

View File

@ -212,6 +212,7 @@
#include "nsITabChild.h" #include "nsITabChild.h"
#include "nsIDOMMediaQueryList.h" #include "nsIDOMMediaQueryList.h"
#include "mozilla/dom/DOMJSClass.h" #include "mozilla/dom/DOMJSClass.h"
#include "mozilla/dom/ScriptSettings.h"
#ifdef MOZ_WEBSPEECH #ifdef MOZ_WEBSPEECH
#include "mozilla/dom/SpeechSynthesis.h" #include "mozilla/dom/SpeechSynthesis.h"
@ -11203,18 +11204,18 @@ nsGlobalWindow::OpenInternal(const nsAString& aUrl, const nsAString& aName,
aDialog, aNavigate, argv, aDialog, aNavigate, argv,
getter_AddRefs(domReturn)); getter_AddRefs(domReturn));
} else { } else {
// Push a null JSContext here so that the window watcher won't screw us // Force a system caller here so that the window watcher won't screw us
// up. We do NOT want this case looking at the JS context on the stack // up. We do NOT want this case looking at the JS context on the stack
// when searching. Compare comments on // when searching. Compare comments on
// nsIDOMWindow::OpenWindow and nsIWindowWatcher::OpenWindow. // nsIDOMWindow::OpenWindow and nsIWindowWatcher::OpenWindow.
// Note: Because nsWindowWatcher is so broken, it's actually important // Note: Because nsWindowWatcher is so broken, it's actually important
// that we don't push a null cx here, because that screws it up when it // that we don't force a system caller here, because that screws it up
// tries to compute the caller principal to associate with dialog // when it tries to compute the caller principal to associate with dialog
// arguments. That whole setup just really needs to be rewritten. :-( // arguments. That whole setup just really needs to be rewritten. :-(
nsCxPusher pusher; Maybe<AutoSystemCaller> asc;
if (!aContentModal) { if (!aContentModal) {
pusher.PushNull(); asc.construct();
} }

View File

@ -27,6 +27,7 @@
#include "nsPrintfCString.h" #include "nsPrintfCString.h"
#include "prprf.h" #include "prprf.h"
#include "mozilla/dom/ScriptSettings.h"
#include "mozilla/dom/DOMError.h" #include "mozilla/dom/DOMError.h"
#include "mozilla/dom/DOMErrorBinding.h" #include "mozilla/dom/DOMErrorBinding.h"
#include "mozilla/dom/HTMLObjectElement.h" #include "mozilla/dom/HTMLObjectElement.h"
@ -2015,12 +2016,12 @@ ConstructJSImplementation(JSContext* aCx, const char* aContractId,
return nullptr; return nullptr;
} }
// Make sure to have nothing on the JS context stack while creating and // Make sure to divorce ourselves from the calling JS while creating and
// initializing the object, so exceptions from that will get reported // initializing the object, so exceptions from that will get reported
// properly, since those are never exceptions that a spec wants to be thrown. // properly, since those are never exceptions that a spec wants to be thrown.
{ // Scope for the nsCxPusher {
nsCxPusher pusher; AutoSystemCaller asc;
pusher.PushNull();
// Get the XPCOM component containing the JS implementation. // Get the XPCOM component containing the JS implementation.
nsCOMPtr<nsISupports> implISupports = do_CreateInstance(aContractId); nsCOMPtr<nsISupports> implISupports = do_CreateInstance(aContractId);
if (!implISupports) { if (!implISupports) {

View File

@ -14,7 +14,6 @@
#include "nsComponentManagerUtils.h" #include "nsComponentManagerUtils.h"
#include "nsServiceManagerUtils.h" #include "nsServiceManagerUtils.h"
#include "nsContentUtils.h" #include "nsContentUtils.h"
#include "nsCxPusher.h"
#include "nsIDocument.h" #include "nsIDocument.h"
#include "nsIObserverService.h" #include "nsIObserverService.h"
#include "nsPIDOMWindow.h" #include "nsPIDOMWindow.h"
@ -25,6 +24,7 @@
#include "mozilla/ClearOnShutdown.h" #include "mozilla/ClearOnShutdown.h"
#include "PCOMContentPermissionRequestChild.h" #include "PCOMContentPermissionRequestChild.h"
#include "mozilla/dom/PermissionMessageUtils.h" #include "mozilla/dom/PermissionMessageUtils.h"
#include "mozilla/dom/ScriptSettings.h"
class nsIPrincipal; class nsIPrincipal;
@ -294,9 +294,8 @@ PositionError::WrapObject(JSContext* aCx, JS::Handle<JSObject*> aScope)
void void
PositionError::NotifyCallback(const GeoPositionErrorCallback& aCallback) PositionError::NotifyCallback(const GeoPositionErrorCallback& aCallback)
{ {
// Ensure that the proper context is on the stack (bug 452762) // We need to be system here. See bug 452762.
nsCxPusher pusher; AutoSystemCaller asc;
pusher.PushNull();
nsAutoMicroTask mt; nsAutoMicroTask mt;
if (aCallback.HasWebIDLCallback()) { if (aCallback.HasWebIDLCallback()) {
@ -529,9 +528,8 @@ nsGeolocationRequest::SendLocation(nsIDOMGeoPosition* aPosition)
Shutdown(); Shutdown();
} }
// Ensure that the proper context is on the stack (bug 452762) // We need to be system here. See bug 452762.
nsCxPusher pusher; AutoSystemCaller asc;
pusher.PushNull();
nsAutoMicroTask mt; nsAutoMicroTask mt;
if (mCallback.HasWebIDLCallback()) { if (mCallback.HasWebIDLCallback()) {
ErrorResult err; ErrorResult err;

View File

@ -36,10 +36,11 @@
#include "SandboxPrivate.h" #include "SandboxPrivate.h"
#include "nsJSPrincipals.h" #include "nsJSPrincipals.h"
#include "nsContentUtils.h" #include "nsContentUtils.h"
#include "nsCxPusher.h" #include "mozilla/dom/ScriptSettings.h"
using mozilla::AutoSafeJSContext; using mozilla::AutoSafeJSContext;
using mozilla::AutoPushJSContext; using mozilla::AutoPushJSContext;
using mozilla::dom::AutoSystemCaller;
/* /*
* defining CAUTIOUS_SCRIPTHOOK makes jsds disable GC while calling out to the * defining CAUTIOUS_SCRIPTHOOK makes jsds disable GC while calling out to the
@ -3004,8 +3005,7 @@ jsdService::EnterNestedEventLoop (jsdINestCallback *callback, uint32_t *_rval)
// Nesting event queues is a thing of the past. Now, we just spin the // Nesting event queues is a thing of the past. Now, we just spin the
// current event loop. // current event loop.
nsresult rv = NS_OK; nsresult rv = NS_OK;
nsCxPusher pusher; AutoSystemCaller asc;
pusher.PushNull();
uint32_t nestLevel = ++mNestedLoopLevel; uint32_t nestLevel = ++mNestedLoopLevel;
nsCOMPtr<nsIThread> thread = do_GetCurrentThread(); nsCOMPtr<nsIThread> thread = do_GetCurrentThread();

View File

@ -35,7 +35,6 @@
#include "nsRenderingContext.h" #include "nsRenderingContext.h"
#include "nsIInterfaceRequestorUtils.h" #include "nsIInterfaceRequestorUtils.h"
#include "nsCSSRendering.h" #include "nsCSSRendering.h"
#include "nsCxPusher.h"
#include "nsThemeConstants.h" #include "nsThemeConstants.h"
#include "nsPIDOMWindow.h" #include "nsPIDOMWindow.h"
#include "nsIDocShell.h" #include "nsIDocShell.h"
@ -73,6 +72,7 @@
#include "nsComputedDOMStyle.h" #include "nsComputedDOMStyle.h"
#include "ActiveLayerTracker.h" #include "ActiveLayerTracker.h"
#include "mozilla/dom/ScriptSettings.h"
#include "mozilla/Preferences.h" #include "mozilla/Preferences.h"
#ifdef MOZ_XUL #ifdef MOZ_XUL
@ -4775,11 +4775,9 @@ nsLayoutUtils::SurfaceFromElement(nsIImageLoadingContent* aElement,
wantImageSurface = true; wantImageSurface = true;
} }
// Push a null JSContext on the stack so that code that runs within // Force a system caller so that the below code doesn't think it's being
// the below code doesn't think it's being called by JS. See bug // called by JS. See bug 604262.
// 604262. AutoSystemCaller asc;
nsCxPusher pusher;
pusher.PushNull();
nsCOMPtr<imgIRequest> imgRequest; nsCOMPtr<imgIRequest> imgRequest;
rv = aElement->GetRequest(nsIImageLoadingContent::CURRENT_REQUEST, rv = aElement->GetRequest(nsIImageLoadingContent::CURRENT_REQUEST,

View File

@ -37,7 +37,6 @@
#include "nsIDocument.h" #include "nsIDocument.h"
#include "jsapi.h" #include "jsapi.h"
#include "nsContentUtils.h" #include "nsContentUtils.h"
#include "nsCxPusher.h"
#include "mozilla/Preferences.h" #include "mozilla/Preferences.h"
#include "nsViewManager.h" #include "nsViewManager.h"
#include "GeckoProfiler.h" #include "GeckoProfiler.h"
@ -48,6 +47,7 @@
#include "Layers.h" #include "Layers.h"
#include "imgIContainer.h" #include "imgIContainer.h"
#include "nsIFrameRequestCallback.h" #include "nsIFrameRequestCallback.h"
#include "mozilla/dom/ScriptSettings.h"
using namespace mozilla; using namespace mozilla;
using namespace mozilla::widget; using namespace mozilla::widget;
@ -722,8 +722,7 @@ nsRefreshDriver::AdvanceTimeAndRefresh(int64_t aMilliseconds)
mMostRecentRefreshEpochTime += aMilliseconds * 1000; mMostRecentRefreshEpochTime += aMilliseconds * 1000;
mMostRecentRefresh += TimeDuration::FromMilliseconds((double) aMilliseconds); mMostRecentRefresh += TimeDuration::FromMilliseconds((double) aMilliseconds);
nsCxPusher pusher; mozilla::dom::AutoSystemCaller asc;
pusher.PushNull();
DoTick(); DoTick();
} }

View File

@ -42,9 +42,9 @@
#include "nsAttrValueInlines.h" #include "nsAttrValueInlines.h"
#include "mozilla/Selection.h" #include "mozilla/Selection.h"
#include "nsContentUtils.h" #include "nsContentUtils.h"
#include "nsCxPusher.h"
#include "nsTextNode.h" #include "nsTextNode.h"
#include "nsStyleSet.h" #include "nsStyleSet.h"
#include "mozilla/dom/ScriptSettings.h"
#define DEFAULT_COLUMN_WIDTH 20 #define DEFAULT_COLUMN_WIDTH 20
@ -274,8 +274,7 @@ nsTextControlFrame::EnsureEditorInitialized()
// Time to mess with our security context... See comments in GetValue() // Time to mess with our security context... See comments in GetValue()
// for why this is needed. // for why this is needed.
nsCxPusher pusher; mozilla::dom::AutoSystemCaller asc;
pusher.PushNull();
// Make sure that we try to focus the content even if the method fails // Make sure that we try to focus the content even if the method fails
class EnsureSetFocus { class EnsureSetFocus {

View File

@ -23,10 +23,10 @@
#include "nsImageFrame.h" #include "nsImageFrame.h"
#include "nsIImageLoadingContent.h" #include "nsIImageLoadingContent.h"
#include "nsContentUtils.h" #include "nsContentUtils.h"
#include "nsCxPusher.h"
#include "ImageContainer.h" #include "ImageContainer.h"
#include "ImageLayers.h" #include "ImageLayers.h"
#include "nsContentList.h" #include "nsContentList.h"
#include "mozilla/dom/ScriptSettings.h"
#include <algorithm> #include <algorithm>
using namespace mozilla; using namespace mozilla;
@ -75,11 +75,8 @@ nsVideoFrame::CreateAnonymousContent(nsTArray<ContentInfo>& aElements)
mPosterImage = element; mPosterImage = element;
NS_ENSURE_TRUE(mPosterImage, NS_ERROR_OUT_OF_MEMORY); NS_ENSURE_TRUE(mPosterImage, NS_ERROR_OUT_OF_MEMORY);
// Push a null JSContext on the stack so that code that runs // See bug 604262.
// within the below code doesn't think it's being called by AutoSystemCaller asc;
// JS. See bug 604262.
nsCxPusher pusher;
pusher.PushNull();
// Set the nsImageLoadingContent::ImageState() to 0. This means that the // Set the nsImageLoadingContent::ImageState() to 0. This means that the
// image will always report its state as 0, so it will never be reframed // image will always report its state as 0, so it will never be reframed

View File

@ -8,10 +8,10 @@
#include "nsIWindowWatcher.h" #include "nsIWindowWatcher.h"
#include "nsCOMPtr.h" #include "nsCOMPtr.h"
#include "nsIComponentManager.h" #include "nsIComponentManager.h"
#include "nsCxPusher.h"
#include "nsIServiceManager.h" #include "nsIServiceManager.h"
#include "nsIInterfaceRequestor.h" #include "nsIInterfaceRequestor.h"
#include "nsIInterfaceRequestorUtils.h" #include "nsIInterfaceRequestorUtils.h"
#include "mozilla/dom/ScriptSettings.h"
static const char kOpenDialogParam[] = "centerscreen,chrome,modal,titlebar"; static const char kOpenDialogParam[] = "centerscreen,chrome,modal,titlebar";
static const char kOpenWindowParam[] = "centerscreen,chrome,titlebar"; static const char kOpenWindowParam[] = "centerscreen,chrome,titlebar";
@ -39,8 +39,7 @@ nsNSSDialogHelper::openDialog(
// gets a system principal, otherwise we'll bork when trying to wrap the // gets a system principal, otherwise we'll bork when trying to wrap the
// nsIKeyGenThread |arguments| property into the unprivileged scoope. // nsIKeyGenThread |arguments| property into the unprivileged scoope.
MOZ_ASSERT(!strncmp("chrome://", url, strlen("chrome://"))); MOZ_ASSERT(!strncmp("chrome://", url, strlen("chrome://")));
nsCxPusher pusher; mozilla::dom::AutoSystemCaller asc;
pusher.PushNull();
nsCOMPtr<nsIDOMWindow> newWindow; nsCOMPtr<nsIDOMWindow> newWindow;
rv = windowWatcher->OpenWindow(parent, rv = windowWatcher->OpenWindow(parent,

View File

@ -6,11 +6,11 @@
#include "nsJSInspector.h" #include "nsJSInspector.h"
#include "nsIXPConnect.h" #include "nsIXPConnect.h"
#include "nsThreadUtils.h" #include "nsThreadUtils.h"
#include "nsCxPusher.h"
#include "jsfriendapi.h" #include "jsfriendapi.h"
#include "js/OldDebugAPI.h" #include "js/OldDebugAPI.h"
#include "mozilla/HoldDropJSObjects.h" #include "mozilla/HoldDropJSObjects.h"
#include "mozilla/ModuleUtils.h" #include "mozilla/ModuleUtils.h"
#include "mozilla/dom/ScriptSettings.h"
#include "nsServiceManagerUtils.h" #include "nsServiceManagerUtils.h"
#include "nsMemory.h" #include "nsMemory.h"
#include "nsArray.h" #include "nsArray.h"
@ -73,8 +73,7 @@ nsJSInspector::EnterNestedEventLoop(const JS::Value& requestor, uint32_t *out)
mRequestors.AppendElement(requestor); mRequestors.AppendElement(requestor);
mozilla::HoldJSObjects(this); mozilla::HoldJSObjects(this);
nsCxPusher pusher; mozilla::dom::AutoSystemCaller asc;
pusher.PushNull();
uint32_t nestLevel = ++mNestedLoopLevel; uint32_t nestLevel = ++mNestedLoopLevel;
while (NS_SUCCEEDED(rv) && mNestedLoopLevel >= nestLevel) { while (NS_SUCCEEDED(rv) && mNestedLoopLevel >= nestLevel) {

View File

@ -12,7 +12,6 @@
// Helper Classes // Helper Classes
#include "nsIServiceManager.h" #include "nsIServiceManager.h"
#include "nsAutoPtr.h" #include "nsAutoPtr.h"
#include "nsCxPusher.h"
// Interfaces needed to be included // Interfaces needed to be included
#include "nsIDOMNode.h" #include "nsIDOMNode.h"
@ -47,6 +46,7 @@
#include "mozilla/Preferences.h" #include "mozilla/Preferences.h"
#include "mozilla/dom/Element.h" #include "mozilla/dom/Element.h"
#include "mozilla/dom/ScriptSettings.h"
using namespace mozilla; using namespace mozilla;
@ -945,8 +945,7 @@ nsContentTreeOwner::ProvideWindow(nsIDOMWindow* aParent,
*aWindowIsNew = (containerPref != nsIBrowserDOMWindow::OPEN_CURRENTWINDOW); *aWindowIsNew = (containerPref != nsIBrowserDOMWindow::OPEN_CURRENTWINDOW);
{ {
nsCxPusher pusher; dom::AutoSystemCaller asc;
pusher.PushNull();
// Get a new rendering area from the browserDOMWin. We don't want // Get a new rendering area from the browserDOMWin. We don't want
// to be starting any loads here, so get it with a null URI. // to be starting any loads here, so get it with a null URI.

View File

@ -50,7 +50,6 @@
#include "nsStyleConsts.h" #include "nsStyleConsts.h"
#include "nsPresContext.h" #include "nsPresContext.h"
#include "nsContentUtils.h" #include "nsContentUtils.h"
#include "nsCxPusher.h"
#include "nsWebShellWindow.h" // get rid of this one, too... #include "nsWebShellWindow.h" // get rid of this one, too...
#include "nsDOMEvent.h" #include "nsDOMEvent.h"
#include "nsGlobalWindow.h" #include "nsGlobalWindow.h"
@ -60,8 +59,10 @@
#include "mozilla/Preferences.h" #include "mozilla/Preferences.h"
#include "mozilla/dom/BarProps.h" #include "mozilla/dom/BarProps.h"
#include "mozilla/dom/Element.h" #include "mozilla/dom/Element.h"
#include "mozilla/dom/ScriptSettings.h"
using namespace mozilla; using namespace mozilla;
using dom::AutoSystemCaller;
#define SIZEMODE_NORMAL NS_LITERAL_STRING("normal") #define SIZEMODE_NORMAL NS_LITERAL_STRING("normal")
#define SIZEMODE_MAXIMIZED NS_LITERAL_STRING("maximized") #define SIZEMODE_MAXIMIZED NS_LITERAL_STRING("maximized")
@ -358,8 +359,7 @@ NS_IMETHODIMP nsXULWindow::ShowModal()
EnableParent(false); EnableParent(false);
{ {
nsCxPusher pusher; AutoSystemCaller asc;
pusher.PushNull();
nsIThread *thread = NS_GetCurrentThread(); nsIThread *thread = NS_GetCurrentThread();
while (mContinueModalLoop) { while (mContinueModalLoop) {
if (!NS_ProcessNextEvent(thread)) if (!NS_ProcessNextEvent(thread))
@ -1767,16 +1767,16 @@ NS_IMETHODIMP nsXULWindow::CreateNewContentWindow(int32_t aChromeFlags,
// We need to create a chrome window to contain the content window we're about // We need to create a chrome window to contain the content window we're about
// to pass back. The subject principal needs to be system while we're creating // to pass back. The subject principal needs to be system while we're creating
// it to make things work right, so push a null cx. See bug 799348 comment 13 // it to make things work right, so force a system caller. See bug 799348
// for a description of what happens when we don't. // comment 13 for a description of what happens when we don't.
nsCxPusher pusher;
pusher.PushNull();
nsCOMPtr<nsIXULWindow> newWindow; nsCOMPtr<nsIXULWindow> newWindow;
appShell->CreateTopLevelWindow(this, uri, {
aChromeFlags, 615, 480, AutoSystemCaller asc;
getter_AddRefs(newWindow)); appShell->CreateTopLevelWindow(this, uri,
NS_ENSURE_TRUE(newWindow, NS_ERROR_FAILURE); aChromeFlags, 615, 480,
pusher.Pop(); getter_AddRefs(newWindow));
NS_ENSURE_TRUE(newWindow, NS_ERROR_FAILURE);
}
// Specify that we want the window to remain locked until the chrome has loaded. // Specify that we want the window to remain locked until the chrome has loaded.
nsXULWindow *xulWin = static_cast<nsXULWindow*> nsXULWindow *xulWin = static_cast<nsXULWindow*>
@ -1785,10 +1785,8 @@ NS_IMETHODIMP nsXULWindow::CreateNewContentWindow(int32_t aChromeFlags,
xulWin->LockUntilChromeLoad(); xulWin->LockUntilChromeLoad();
// Push nullptr onto the JSContext stack before we dispatch a native event.
{ {
nsCxPusher pusher; AutoSystemCaller asc;
pusher.PushNull();
nsIThread *thread = NS_GetCurrentThread(); nsIThread *thread = NS_GetCurrentThread();
while (xulWin->IsLocked()) { while (xulWin->IsLocked()) {
if (!NS_ProcessNextEvent(thread)) if (!NS_ProcessNextEvent(thread))