Cleaner fix for making turbo mode dynamic (89504). r=ccarlen sr=ben

git-svn-id: svn://10.0.0.236/trunk@101246 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
blakeross%telocity.com
2001-08-17 00:25:04 +00:00
parent 442875c039
commit 8d46d34297
6 changed files with 9 additions and 23 deletions

View File

@@ -26,7 +26,6 @@ nsNativeAppSupportBase::nsNativeAppSupportBase()
: mRefCnt( 0 ),
mSplash( 0 ),
mServerMode( PR_FALSE ),
mStartupServerMode( PR_FALSE ),
mNeedsProfileUI( PR_FALSE ) {
}
@@ -94,13 +93,6 @@ nsNativeAppSupportBase::GetIsServerMode(PRBool *aIsServerMode) {
return NS_OK;
}
NS_IMETHODIMP
nsNativeAppSupportBase::GetIsStartupServerMode(PRBool *aIsStartupServerMode) {
NS_ENSURE_ARG( aIsStartupServerMode );
*aIsStartupServerMode = mStartupServerMode;
return NS_OK;
}
NS_IMETHODIMP
nsNativeAppSupportBase::GetNeedsProfileUI(PRBool *aNeedsProfileUI) {
NS_ENSURE_ARG_POINTER(aNeedsProfileUI);