1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/toolkit/xre/nsNativeAppSupportBase.cpp Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,55 @@ 1.4 +/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ 1.5 +/* This Source Code Form is subject to the terms of the Mozilla Public 1.6 + * License, v. 2.0. If a copy of the MPL was not distributed with this 1.7 + * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ 1.8 + 1.9 +#include "nsNativeAppSupportBase.h" 1.10 + 1.11 +nsNativeAppSupportBase::nsNativeAppSupportBase() 1.12 +{ 1.13 +} 1.14 + 1.15 +nsNativeAppSupportBase::~nsNativeAppSupportBase() 1.16 +{ 1.17 +} 1.18 + 1.19 +NS_IMPL_ISUPPORTS(nsNativeAppSupportBase, nsINativeAppSupport) 1.20 + 1.21 +// Start answer defaults to OK. 1.22 +NS_IMETHODIMP 1.23 +nsNativeAppSupportBase::Start( bool *result ) 1.24 +{ 1.25 + *result = true; 1.26 + return NS_OK; 1.27 +} 1.28 + 1.29 +NS_IMETHODIMP 1.30 +nsNativeAppSupportBase::Enable() 1.31 +{ 1.32 + return NS_OK; 1.33 +} 1.34 + 1.35 +// Stop answer defaults to OK. 1.36 +NS_IMETHODIMP 1.37 +nsNativeAppSupportBase::Stop( bool *result ) 1.38 +{ 1.39 + *result = true; 1.40 + return NS_OK; 1.41 +} 1.42 + 1.43 +NS_IMETHODIMP 1.44 +nsNativeAppSupportBase::Quit() 1.45 +{ 1.46 + return NS_OK; 1.47 +} 1.48 + 1.49 +NS_IMETHODIMP 1.50 +nsNativeAppSupportBase::ReOpen() 1.51 +{ 1.52 + return NS_OK; 1.53 +} 1.54 + 1.55 +NS_IMETHODIMP 1.56 +nsNativeAppSupportBase::OnLastWindowClosing() { 1.57 + return NS_OK; 1.58 +}