2015-04-09 20:25:05 +03:00
|
|
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
|
2012-05-21 15:12:37 +04:00
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
2002-08-21 14:25:54 +04:00
|
|
|
|
|
|
|
#ifndef _nsXULAppAPI_h__
|
|
|
|
#define _nsXULAppAPI_h__
|
|
|
|
|
2004-12-07 07:53:07 +03:00
|
|
|
#include "nsID.h"
|
2005-11-23 17:16:33 +03:00
|
|
|
#include "xrecore.h"
|
2005-08-29 23:27:16 +04:00
|
|
|
#include "nsXPCOM.h"
|
2006-01-12 18:29:10 +03:00
|
|
|
#include "nsISupports.h"
|
2015-05-19 21:15:34 +03:00
|
|
|
#include "mozilla/Logging.h"
|
2012-02-22 11:12:15 +04:00
|
|
|
#include "nsXREAppData.h"
|
2013-08-28 06:59:14 +04:00
|
|
|
#include "js/TypeDecls.h"
|
2007-05-16 21:14:59 +04:00
|
|
|
|
2014-01-30 22:26:54 +04:00
|
|
|
#include "mozilla/ArrayUtils.h"
|
2012-04-03 04:21:24 +04:00
|
|
|
#include "mozilla/Assertions.h"
|
2014-09-29 20:00:00 +04:00
|
|
|
#include "mozilla/Vector.h"
|
2015-07-06 19:01:09 +03:00
|
|
|
#include "mozilla/TimeStamp.h"
|
2012-04-03 04:21:24 +04:00
|
|
|
|
2005-07-23 18:00:07 +04:00
|
|
|
/**
|
2007-09-26 22:35:21 +04:00
|
|
|
* A directory service key which provides the platform-correct "application
|
|
|
|
* data" directory as follows, where $name and $vendor are as defined above and
|
|
|
|
* $vendor is optional:
|
|
|
|
*
|
|
|
|
* Windows:
|
|
|
|
* HOME = Documents and Settings\$USER\Application Data
|
|
|
|
* UAppData = $HOME[\$vendor]\$name
|
|
|
|
*
|
|
|
|
* Unix:
|
|
|
|
* HOME = ~
|
|
|
|
* UAppData = $HOME/.[$vendor/]$name
|
|
|
|
*
|
|
|
|
* Mac:
|
|
|
|
* HOME = ~
|
|
|
|
* UAppData = $HOME/Library/Application Support/$name
|
|
|
|
*
|
|
|
|
* Note that the "profile" member above will change the value of UAppData as
|
|
|
|
* follows:
|
|
|
|
*
|
|
|
|
* Windows:
|
|
|
|
* UAppData = $HOME\$profile
|
|
|
|
*
|
|
|
|
* Unix:
|
|
|
|
* UAppData = $HOME/.$profile
|
|
|
|
*
|
|
|
|
* Mac:
|
|
|
|
* UAppData = $HOME/Library/Application Support/$profile
|
2005-07-23 18:00:07 +04:00
|
|
|
*/
|
|
|
|
#define XRE_USER_APP_DATA_DIR "UAppData"
|
|
|
|
|
2005-06-07 23:45:11 +04:00
|
|
|
/**
|
|
|
|
* A directory service key which provides a list of all enabled extension
|
2012-02-13 22:57:28 +04:00
|
|
|
* directories and files (packed XPIs). The list includes compatible
|
|
|
|
* platform-specific extension subdirectories.
|
2005-06-07 23:45:11 +04:00
|
|
|
*
|
|
|
|
* @note The directory list will have no members when the application is
|
|
|
|
* launched in safe mode.
|
|
|
|
*/
|
|
|
|
#define XRE_EXTENSIONS_DIR_LIST "XREExtDL"
|
|
|
|
|
2005-10-04 22:06:26 +04:00
|
|
|
/**
|
|
|
|
* A directory service key which provides the executable file used to
|
|
|
|
* launch the current process. This is the same value returned by the
|
|
|
|
* XRE_GetBinaryPath function defined below.
|
|
|
|
*/
|
|
|
|
#define XRE_EXECUTABLE_FILE "XREExeF"
|
|
|
|
|
2006-01-12 18:29:10 +03:00
|
|
|
/**
|
|
|
|
* A directory service key which specifies the profile
|
|
|
|
* directory. Unlike the NS_APP_USER_PROFILE_50_DIR key, this key may
|
|
|
|
* be available when the profile hasn't been "started", or after is
|
|
|
|
* has been shut down. If the application is running without a
|
|
|
|
* profile, such as when showing the profile manager UI, this key will
|
|
|
|
* not be available. This key is provided by the XUL apprunner or by
|
|
|
|
* the aAppDirProvider object passed to XRE_InitEmbedding.
|
|
|
|
*/
|
|
|
|
#define NS_APP_PROFILE_DIR_STARTUP "ProfDS"
|
|
|
|
|
|
|
|
/**
|
|
|
|
* A directory service key which specifies the profile
|
|
|
|
* directory. Unlike the NS_APP_USER_PROFILE_LOCAL_50_DIR key, this key may
|
|
|
|
* be available when the profile hasn't been "started", or after is
|
|
|
|
* has been shut down. If the application is running without a
|
|
|
|
* profile, such as when showing the profile manager UI, this key will
|
|
|
|
* not be available. This key is provided by the XUL apprunner or by
|
|
|
|
* the aAppDirProvider object passed to XRE_InitEmbedding.
|
|
|
|
*/
|
|
|
|
#define NS_APP_PROFILE_LOCAL_DIR_STARTUP "ProfLDS"
|
|
|
|
|
2008-01-15 18:13:59 +03:00
|
|
|
/**
|
|
|
|
* A directory service key which specifies the system extension
|
|
|
|
* parent directory containing platform-specific extensions.
|
|
|
|
* This key may not be available on all platforms.
|
|
|
|
*/
|
|
|
|
#define XRE_SYS_LOCAL_EXTENSION_PARENT_DIR "XRESysLExtPD"
|
|
|
|
|
|
|
|
/**
|
|
|
|
* A directory service key which specifies the system extension
|
|
|
|
* parent directory containing platform-independent extensions.
|
|
|
|
* This key may not be available on all platforms.
|
|
|
|
* Additionally, the directory may be equal to that returned by
|
|
|
|
* XRE_SYS_LOCAL_EXTENSION_PARENT_DIR on some platforms.
|
|
|
|
*/
|
|
|
|
#define XRE_SYS_SHARE_EXTENSION_PARENT_DIR "XRESysSExtPD"
|
|
|
|
|
|
|
|
/**
|
|
|
|
* A directory service key which specifies the user system extension
|
|
|
|
* parent directory.
|
|
|
|
*/
|
|
|
|
#define XRE_USER_SYS_EXTENSION_DIR "XREUSysExt"
|
|
|
|
|
2011-01-20 01:37:24 +03:00
|
|
|
/**
|
|
|
|
* A directory service key which specifies the distribution specific files for
|
|
|
|
* the application.
|
|
|
|
*/
|
|
|
|
#define XRE_APP_DISTRIBUTION_DIR "XREAppDist"
|
|
|
|
|
2012-05-22 18:50:04 +04:00
|
|
|
/**
|
|
|
|
* A directory service key which provides the update directory.
|
|
|
|
* At present this is supported only on Windows.
|
|
|
|
* Windows: Documents and Settings\<User>\Local Settings\Application Data\
|
|
|
|
* <Vendor>\<Application>\<relative path to app dir from Program Files>
|
|
|
|
* If appDir is not under the Program Files, directory service will fail.
|
|
|
|
* Callers should fallback to appDir.
|
|
|
|
*/
|
|
|
|
#define XRE_UPDATE_ROOT_DIR "UpdRootD"
|
|
|
|
|
2012-12-15 04:06:41 +04:00
|
|
|
/**
|
2014-08-13 22:45:37 +04:00
|
|
|
* A directory service key which provides an alternate location
|
|
|
|
* to UpdRootD to to store large files. This key is currently
|
|
|
|
* only implemented in the Gonk directory service provider.
|
2012-12-15 04:06:41 +04:00
|
|
|
*/
|
|
|
|
|
|
|
|
#define XRE_UPDATE_ARCHIVE_DIR "UpdArchD"
|
|
|
|
|
2012-10-01 06:55:51 +04:00
|
|
|
/**
|
|
|
|
* A directory service key which provides the directory where an OS update is
|
|
|
|
* applied.
|
|
|
|
* At present this is supported only in Gonk.
|
|
|
|
*/
|
|
|
|
#define XRE_OS_UPDATE_APPLY_TO_DIR "OSUpdApplyToD"
|
|
|
|
|
2004-06-18 01:23:51 +04:00
|
|
|
/**
|
|
|
|
* Begin an XUL application. Does not return until the user exits the
|
|
|
|
* application.
|
2005-05-12 17:23:30 +04:00
|
|
|
*
|
2007-12-31 18:15:43 +03:00
|
|
|
* @param argc/argv Command-line parameters to pass to the application. On
|
|
|
|
* Windows, these should be in UTF8. On unix-like platforms
|
|
|
|
* these are in the "native" character set.
|
2005-05-12 17:23:30 +04:00
|
|
|
*
|
|
|
|
* @param aAppData Information about the application to be run.
|
|
|
|
*
|
2012-05-25 14:01:29 +04:00
|
|
|
* @param aFlags Platform specific flags.
|
|
|
|
*
|
2004-06-18 01:23:51 +04:00
|
|
|
* @return A native result code suitable for returning from main().
|
|
|
|
*
|
2007-09-26 22:35:21 +04:00
|
|
|
* @note If the binary is linked against the standalone XPCOM glue,
|
2004-06-18 01:23:51 +04:00
|
|
|
* XPCOMGlueStartup() should be called before this method.
|
|
|
|
*/
|
2005-11-23 17:16:33 +03:00
|
|
|
XRE_API(int,
|
2012-05-25 14:01:29 +04:00
|
|
|
XRE_main, (int argc, char* argv[], const nsXREAppData* aAppData,
|
2012-08-22 19:56:38 +04:00
|
|
|
uint32_t aFlags))
|
2005-03-19 00:24:05 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Given a path relative to the current working directory (or an absolute
|
2012-06-06 06:08:30 +04:00
|
|
|
* path), return an appropriate nsIFile object.
|
2007-12-31 18:15:43 +03:00
|
|
|
*
|
|
|
|
* @note Pass UTF8 strings on Windows... native charset on other platforms.
|
2005-03-19 00:24:05 +03:00
|
|
|
*/
|
2005-11-23 17:16:33 +03:00
|
|
|
XRE_API(nsresult,
|
2014-08-13 22:45:37 +04:00
|
|
|
XRE_GetFileFromPath, (const char* aPath, nsIFile** aResult))
|
2002-08-21 14:25:54 +04:00
|
|
|
|
2005-06-13 20:45:22 +04:00
|
|
|
/**
|
|
|
|
* Get the path of the running application binary and store it in aResult.
|
2014-08-13 22:45:37 +04:00
|
|
|
* @param aArgv0 The value passed as argv[0] of main(). This value is only
|
2005-06-13 20:45:22 +04:00
|
|
|
* used on *nix, and only when other methods of determining
|
|
|
|
* the binary path have failed.
|
|
|
|
*/
|
2005-11-23 17:16:33 +03:00
|
|
|
XRE_API(nsresult,
|
2014-08-13 22:45:37 +04:00
|
|
|
XRE_GetBinaryPath, (const char* aArgv0, nsIFile** aResult))
|
2005-06-13 20:45:22 +04:00
|
|
|
|
2005-08-29 23:27:16 +04:00
|
|
|
/**
|
2010-06-10 22:11:11 +04:00
|
|
|
* Get the static module built in to libxul.
|
2005-08-29 23:27:16 +04:00
|
|
|
*/
|
2010-06-10 22:11:11 +04:00
|
|
|
XRE_API(const mozilla::Module*,
|
|
|
|
XRE_GetStaticModule, ())
|
2005-08-29 23:27:16 +04:00
|
|
|
|
2006-01-12 18:29:10 +03:00
|
|
|
/**
|
|
|
|
* Lock a profile directory using platform-specific semantics.
|
|
|
|
*
|
|
|
|
* @param aDirectory The profile directory to lock.
|
|
|
|
* @param aLockObject An opaque lock object. The directory will remain locked
|
|
|
|
* as long as the XPCOM reference is held.
|
|
|
|
*/
|
|
|
|
XRE_API(nsresult,
|
2012-06-06 06:08:30 +04:00
|
|
|
XRE_LockProfileDirectory, (nsIFile* aDirectory,
|
2014-08-13 22:45:37 +04:00
|
|
|
nsISupports** aLockObject))
|
2006-01-12 18:29:10 +03:00
|
|
|
|
2005-09-01 17:21:55 +04:00
|
|
|
/**
|
|
|
|
* Initialize libXUL for embedding purposes.
|
|
|
|
*
|
|
|
|
* @param aLibXULDirectory The directory in which the libXUL shared library
|
|
|
|
* was found.
|
|
|
|
* @param aAppDirectory The directory in which the application components
|
|
|
|
* and resources can be found. This will map to
|
2006-01-12 18:29:10 +03:00
|
|
|
* the NS_OS_CURRENT_PROCESS_DIR directory service
|
|
|
|
* key.
|
2005-09-01 17:21:55 +04:00
|
|
|
* @param aAppDirProvider A directory provider for the application. This
|
|
|
|
* provider will be aggregated by a libxul provider
|
|
|
|
* which will provide the base required GRE keys.
|
|
|
|
*
|
|
|
|
* @note This function must be called from the "main" thread.
|
|
|
|
*
|
|
|
|
* @note At the present time, this function may only be called once in
|
|
|
|
* a given process. Use XRE_TermEmbedding to clean up and free
|
|
|
|
* resources allocated by XRE_InitEmbedding.
|
|
|
|
*/
|
|
|
|
|
2005-11-23 17:16:33 +03:00
|
|
|
XRE_API(nsresult,
|
2014-08-13 22:45:37 +04:00
|
|
|
XRE_InitEmbedding2, (nsIFile* aLibXULDirectory,
|
|
|
|
nsIFile* aAppDirectory,
|
|
|
|
nsIDirectoryServiceProvider* aAppDirProvider))
|
2010-06-10 22:11:11 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Register static XPCOM component information.
|
|
|
|
* This method may be called at any time before or after XRE_main or
|
|
|
|
* XRE_InitEmbedding.
|
|
|
|
*/
|
|
|
|
XRE_API(nsresult,
|
|
|
|
XRE_AddStaticComponent, (const mozilla::Module* aComponent))
|
2010-06-12 00:13:26 +04:00
|
|
|
|
2010-06-10 22:11:11 +04:00
|
|
|
/**
|
|
|
|
* Register XPCOM components found in an array of files/directories.
|
|
|
|
* This method may be called at any time before or after XRE_main or
|
|
|
|
* XRE_InitEmbedding.
|
|
|
|
*
|
|
|
|
* @param aFiles An array of files or directories.
|
|
|
|
* @param aFileCount the number of items in the aFiles array.
|
|
|
|
* @note appdir/components is registered automatically.
|
2010-06-12 00:13:26 +04:00
|
|
|
*
|
2015-05-01 17:23:44 +03:00
|
|
|
* NS_APP_LOCATION specifies a location to search for binary XPCOM
|
2010-06-12 00:13:26 +04:00
|
|
|
* components as well as component/chrome manifest files.
|
|
|
|
*
|
2015-05-01 17:23:44 +03:00
|
|
|
* NS_EXTENSION_LOCATION excludes binary XPCOM components but allows other
|
|
|
|
* manifest instructions.
|
|
|
|
*
|
2010-06-12 00:13:26 +04:00
|
|
|
* NS_SKIN_LOCATION specifies a location to search for chrome manifest files
|
|
|
|
* which are only allowed to register only skin packages and style overlays.
|
2010-06-10 22:11:11 +04:00
|
|
|
*/
|
2010-06-12 00:13:26 +04:00
|
|
|
enum NSLocationType
|
|
|
|
{
|
2015-05-01 17:23:44 +03:00
|
|
|
NS_APP_LOCATION,
|
|
|
|
NS_EXTENSION_LOCATION,
|
2011-07-29 13:20:47 +04:00
|
|
|
NS_SKIN_LOCATION,
|
|
|
|
NS_BOOTSTRAPPED_LOCATION
|
2010-06-12 00:13:26 +04:00
|
|
|
};
|
|
|
|
|
2010-06-10 22:11:11 +04:00
|
|
|
XRE_API(nsresult,
|
2010-06-28 05:26:38 +04:00
|
|
|
XRE_AddManifestLocation, (NSLocationType aType,
|
2012-06-06 06:08:30 +04:00
|
|
|
nsIFile* aLocation))
|
2005-09-01 17:21:55 +04:00
|
|
|
|
2010-09-09 07:37:11 +04:00
|
|
|
/**
|
|
|
|
* Register XPCOM components found in a JAR.
|
|
|
|
* This is similar to XRE_AddManifestLocation except the file specified
|
|
|
|
* must be a zip archive with a manifest named chrome.manifest
|
|
|
|
* This method may be called at any time before or after XRE_main or
|
|
|
|
* XRE_InitEmbedding.
|
|
|
|
*
|
|
|
|
* @param aFiles An array of files or directories.
|
|
|
|
* @param aFileCount the number of items in the aFiles array.
|
|
|
|
* @note appdir/components is registered automatically.
|
|
|
|
*
|
|
|
|
* NS_COMPONENT_LOCATION specifies a location to search for binary XPCOM
|
|
|
|
* components as well as component/chrome manifest files.
|
|
|
|
*
|
|
|
|
* NS_SKIN_LOCATION specifies a location to search for chrome manifest files
|
|
|
|
* which are only allowed to register only skin packages and style overlays.
|
|
|
|
*/
|
|
|
|
XRE_API(nsresult,
|
|
|
|
XRE_AddJarManifestLocation, (NSLocationType aType,
|
2012-06-06 06:08:30 +04:00
|
|
|
nsIFile* aLocation))
|
2010-09-09 07:37:11 +04:00
|
|
|
|
2006-01-12 18:29:10 +03:00
|
|
|
/**
|
|
|
|
* Fire notifications to inform the toolkit about a new profile. This
|
|
|
|
* method should be called after XRE_InitEmbedding if the embedder
|
|
|
|
* wishes to run with a profile. Normally the embedder should call
|
|
|
|
* XRE_LockProfileDirectory to lock the directory before calling this
|
|
|
|
* method.
|
|
|
|
*
|
|
|
|
* @note There are two possibilities for selecting a profile:
|
|
|
|
*
|
|
|
|
* 1) Select the profile before calling XRE_InitEmbedding. The aAppDirProvider
|
|
|
|
* object passed to XRE_InitEmbedding should provide the
|
|
|
|
* NS_APP_USER_PROFILE_50_DIR key, and may also provide the following keys:
|
|
|
|
* - NS_APP_USER_PROFILE_LOCAL_50_DIR
|
|
|
|
* - NS_APP_PROFILE_DIR_STARTUP
|
|
|
|
* - NS_APP_PROFILE_LOCAL_DIR_STARTUP
|
|
|
|
* In this scenario XRE_NotifyProfile should be called immediately after
|
|
|
|
* XRE_InitEmbedding. Component registration information will be stored in
|
|
|
|
* the profile and JS components may be stored in the fastload cache.
|
|
|
|
*
|
|
|
|
* 2) Select a profile some time after calling XRE_InitEmbedding. In this case
|
|
|
|
* the embedder must install a directory service provider which provides
|
|
|
|
* NS_APP_USER_PROFILE_50_DIR and optionally
|
|
|
|
* NS_APP_USER_PROFILE_LOCAL_50_DIR. Component registration information
|
|
|
|
* will be stored in the application directory and JS components will not
|
|
|
|
* fastload.
|
|
|
|
*/
|
|
|
|
XRE_API(void,
|
|
|
|
XRE_NotifyProfile, ())
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Terminate embedding started with XRE_InitEmbedding or XRE_InitEmbedding2
|
|
|
|
*/
|
2005-11-23 17:16:33 +03:00
|
|
|
XRE_API(void,
|
|
|
|
XRE_TermEmbedding, ())
|
2005-09-01 17:21:55 +04:00
|
|
|
|
2006-08-17 18:22:04 +04:00
|
|
|
/**
|
|
|
|
* Create a new nsXREAppData structure from an application.ini file.
|
|
|
|
*
|
|
|
|
* @param aINIFile The application.ini file to parse.
|
|
|
|
* @param aAppData A newly-allocated nsXREAppData structure. The caller is
|
|
|
|
* responsible for freeing this structure using
|
|
|
|
* XRE_FreeAppData.
|
|
|
|
*/
|
|
|
|
XRE_API(nsresult,
|
2012-06-06 06:08:30 +04:00
|
|
|
XRE_CreateAppData, (nsIFile* aINIFile,
|
2014-08-13 22:45:37 +04:00
|
|
|
nsXREAppData** aAppData))
|
2006-08-17 18:22:04 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Parse an INI file (application.ini or override.ini) into an existing
|
|
|
|
* nsXREAppData structure.
|
|
|
|
*
|
|
|
|
* @param aINIFile The INI file to parse
|
|
|
|
* @param aAppData The nsXREAppData structure to fill.
|
|
|
|
*/
|
|
|
|
XRE_API(nsresult,
|
2012-06-06 06:08:30 +04:00
|
|
|
XRE_ParseAppData, (nsIFile* aINIFile,
|
2014-08-13 22:45:37 +04:00
|
|
|
nsXREAppData* aAppData))
|
2006-08-17 18:22:04 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Free a nsXREAppData structure that was allocated with XRE_CreateAppData.
|
|
|
|
*/
|
|
|
|
XRE_API(void,
|
2014-08-13 22:45:37 +04:00
|
|
|
XRE_FreeAppData, (nsXREAppData* aAppData))
|
2006-08-17 18:22:04 +04:00
|
|
|
|
2014-08-13 22:45:37 +04:00
|
|
|
enum GeckoProcessType
|
|
|
|
{
|
2009-08-19 21:09:51 +04:00
|
|
|
GeckoProcessType_Default = 0,
|
2009-07-10 23:03:09 +04:00
|
|
|
|
2009-08-19 21:09:51 +04:00
|
|
|
GeckoProcessType_Plugin,
|
|
|
|
GeckoProcessType_Content,
|
2009-07-14 09:12:50 +04:00
|
|
|
|
2009-10-06 22:02:26 +04:00
|
|
|
GeckoProcessType_IPDLUnitTest,
|
2009-07-10 23:03:09 +04:00
|
|
|
|
2014-05-18 07:05:46 +04:00
|
|
|
GeckoProcessType_GMPlugin, // Gecko Media Plugin
|
|
|
|
|
2009-08-19 21:09:51 +04:00
|
|
|
GeckoProcessType_End,
|
|
|
|
GeckoProcessType_Invalid = GeckoProcessType_End
|
2009-07-10 23:03:09 +04:00
|
|
|
};
|
|
|
|
|
2009-08-19 21:09:51 +04:00
|
|
|
static const char* const kGeckoProcessTypeString[] = {
|
2009-07-10 23:03:09 +04:00
|
|
|
"default",
|
|
|
|
"plugin",
|
|
|
|
"tab",
|
2014-05-18 07:05:46 +04:00
|
|
|
"ipdlunittest",
|
|
|
|
"geckomediaplugin"
|
2009-07-10 23:03:09 +04:00
|
|
|
};
|
|
|
|
|
2014-01-30 22:26:54 +04:00
|
|
|
static_assert(MOZ_ARRAY_LENGTH(kGeckoProcessTypeString) ==
|
2013-07-18 21:59:53 +04:00
|
|
|
GeckoProcessType_End,
|
|
|
|
"Array length mismatch");
|
2009-07-20 23:12:54 +04:00
|
|
|
|
2009-07-10 23:03:09 +04:00
|
|
|
XRE_API(const char*,
|
2009-08-19 21:09:51 +04:00
|
|
|
XRE_ChildProcessTypeToString, (GeckoProcessType aProcessType))
|
2009-07-10 23:03:09 +04:00
|
|
|
|
2014-08-09 04:52:12 +04:00
|
|
|
XRE_API(void,
|
|
|
|
XRE_SetProcessType, (const char* aProcessTypeString))
|
2009-07-10 23:03:09 +04:00
|
|
|
|
2010-01-13 00:14:38 +03:00
|
|
|
#if defined(MOZ_CRASHREPORTER)
|
2010-03-19 05:01:10 +03:00
|
|
|
// Used in the "master" parent process hosting the crash server
|
2011-09-29 10:19:26 +04:00
|
|
|
XRE_API(bool,
|
2012-08-22 19:56:38 +04:00
|
|
|
XRE_TakeMinidumpForChild, (uint32_t aChildPid, nsIFile** aDump,
|
|
|
|
uint32_t* aSequence))
|
2010-03-19 05:01:10 +03:00
|
|
|
|
2010-01-15 01:38:00 +03:00
|
|
|
// Used in child processes.
|
2011-09-29 10:19:26 +04:00
|
|
|
XRE_API(bool,
|
2010-01-13 02:42:58 +03:00
|
|
|
XRE_SetRemoteExceptionHandler, (const char* aPipe))
|
2010-01-13 00:14:38 +03:00
|
|
|
#endif
|
|
|
|
|
2014-11-14 11:26:24 +03:00
|
|
|
namespace mozilla {
|
|
|
|
namespace gmp {
|
|
|
|
class GMPLoader;
|
|
|
|
} // namespace gmp
|
2015-07-13 18:25:42 +03:00
|
|
|
} // namespace mozilla
|
2014-11-14 11:26:24 +03:00
|
|
|
|
2009-06-30 23:21:25 +04:00
|
|
|
XRE_API(nsresult,
|
|
|
|
XRE_InitChildProcess, (int aArgc,
|
2014-11-14 11:26:24 +03:00
|
|
|
char* aArgv[],
|
|
|
|
mozilla::gmp::GMPLoader* aGMPLoader))
|
2009-08-19 21:09:51 +04:00
|
|
|
|
|
|
|
XRE_API(GeckoProcessType,
|
|
|
|
XRE_GetProcessType, ())
|
2009-06-30 23:21:25 +04:00
|
|
|
|
2014-12-09 22:21:47 +03:00
|
|
|
XRE_API(bool,
|
|
|
|
XRE_IsParentProcess, ())
|
|
|
|
|
2015-07-04 04:29:00 +03:00
|
|
|
XRE_API(bool,
|
|
|
|
XRE_IsContentProcess, ())
|
|
|
|
|
2009-06-30 23:21:25 +04:00
|
|
|
typedef void (*MainFunction)(void* aData);
|
|
|
|
|
|
|
|
XRE_API(nsresult,
|
|
|
|
XRE_InitParentProcess, (int aArgc,
|
|
|
|
char* aArgv[],
|
|
|
|
MainFunction aMainFunction,
|
|
|
|
void* aMainFunctionExtraData))
|
|
|
|
|
2009-10-06 22:02:26 +04:00
|
|
|
XRE_API(int,
|
|
|
|
XRE_RunIPDLTest, (int aArgc,
|
|
|
|
char* aArgv[]))
|
|
|
|
|
2009-08-28 23:46:21 +04:00
|
|
|
XRE_API(nsresult,
|
|
|
|
XRE_RunAppShell, ())
|
|
|
|
|
2009-11-04 08:12:18 +03:00
|
|
|
XRE_API(nsresult,
|
|
|
|
XRE_InitCommandLine, (int aArgc, char* aArgv[]))
|
|
|
|
|
2009-12-05 03:15:44 +03:00
|
|
|
XRE_API(nsresult,
|
|
|
|
XRE_DeinitCommandLine, ())
|
|
|
|
|
2009-08-28 23:46:21 +04:00
|
|
|
class MessageLoop;
|
|
|
|
|
2009-08-26 03:39:30 +04:00
|
|
|
XRE_API(void,
|
2009-12-03 11:16:28 +03:00
|
|
|
XRE_ShutdownChildProcess, ())
|
2009-08-29 03:16:19 +04:00
|
|
|
|
2009-09-03 04:18:27 +04:00
|
|
|
XRE_API(MessageLoop*,
|
|
|
|
XRE_GetIOMessageLoop, ())
|
|
|
|
|
2009-08-29 03:16:19 +04:00
|
|
|
XRE_API(bool,
|
|
|
|
XRE_SendTestShellCommand, (JSContext* aCx,
|
|
|
|
JSString* aCommand,
|
|
|
|
void* aCallback))
|
2009-11-11 11:34:08 +03:00
|
|
|
XRE_API(bool,
|
|
|
|
XRE_ShutdownTestShell, ())
|
2009-08-26 03:39:30 +04:00
|
|
|
|
2010-02-25 01:25:16 +03:00
|
|
|
XRE_API(void,
|
|
|
|
XRE_InstallX11ErrorHandler, ())
|
2011-05-22 10:22:27 +04:00
|
|
|
|
2011-05-22 10:23:20 +04:00
|
|
|
XRE_API(void,
|
2012-08-22 19:56:38 +04:00
|
|
|
XRE_TelemetryAccumulate, (int aID, uint32_t aSample))
|
2011-05-22 10:23:20 +04:00
|
|
|
|
2012-06-15 10:23:08 +04:00
|
|
|
XRE_API(void,
|
2015-07-06 19:01:09 +03:00
|
|
|
XRE_StartupTimelineRecord, (int aEvent, mozilla::TimeStamp aWhen))
|
2012-06-15 10:23:08 +04:00
|
|
|
|
2011-06-27 06:05:51 +04:00
|
|
|
XRE_API(void,
|
2014-08-13 22:45:37 +04:00
|
|
|
XRE_InitOmnijar, (nsIFile* aGreOmni,
|
|
|
|
nsIFile* aAppOmni))
|
2013-01-04 19:27:41 +04:00
|
|
|
XRE_API(void,
|
2013-11-05 16:45:20 +04:00
|
|
|
XRE_StopLateWriteChecks, (void))
|
2012-05-25 14:01:29 +04:00
|
|
|
|
2014-07-30 11:24:00 +04:00
|
|
|
#ifdef MOZ_B2G_LOADER
|
|
|
|
XRE_API(int,
|
2014-09-29 20:00:00 +04:00
|
|
|
XRE_ProcLoaderServiceRun, (pid_t, int, int argc, const char* argv[],
|
|
|
|
mozilla::Vector<int>& aReservedFds));
|
2014-07-30 11:24:00 +04:00
|
|
|
XRE_API(void,
|
2014-09-29 20:00:00 +04:00
|
|
|
XRE_ProcLoaderClientInit, (pid_t, int,
|
|
|
|
mozilla::Vector<int>& aReservedFds));
|
2014-07-26 04:52:00 +04:00
|
|
|
XRE_API(void,
|
|
|
|
XRE_ProcLoaderPreload, (const char* aProgramDir,
|
|
|
|
const nsXREAppData* aAppData));
|
2014-07-30 11:24:00 +04:00
|
|
|
#endif // MOZ_B2G_LOADER
|
|
|
|
|
2013-10-01 00:09:28 +04:00
|
|
|
XRE_API(int,
|
|
|
|
XRE_XPCShellMain, (int argc, char** argv, char** envp))
|
|
|
|
|
2015-06-26 20:59:52 +03:00
|
|
|
#if MOZ_WIDGET_GTK == 2
|
|
|
|
XRE_API(void,
|
|
|
|
XRE_GlibInit, ())
|
|
|
|
#endif
|
|
|
|
|
2002-08-21 14:25:54 +04:00
|
|
|
#endif // _nsXULAppAPI_h__
|