about:startup - change chrome package name for jquery stuff so that it's clear that it's private

This commit is contained in:
Daniel Brooks 2010-11-15 07:12:26 -06:00
parent 88754df979
commit 0cef82a4c0
3 changed files with 13 additions and 13 deletions

View File

@ -51,9 +51,9 @@
<title>&about.startup.title;</title>
<link rel="stylesheet" href="chrome://global/skin/aboutSupport.css" type="text/css"/>
<link rel="stylesheet" href="chrome://global/skin/aboutStartup.css" type="text/css"/>
<script type="application/javascript" src="chrome://jquery/content/jquery.js"/>
<script type="application/javascript" src="chrome://jquery/content/jquery.flot.js"/>
<script type="application/javascript" src="chrome://jquery/content/jquery.flot.selection.js"/>
<script type="application/javascript" src="chrome://unstable-mozilla-private/content/jquery.js"/>
<script type="application/javascript" src="chrome://unstable-mozilla-private/content/jquery.flot.js"/>
<script type="application/javascript" src="chrome://unstable-mozilla-private/content/jquery.flot.selection.js"/>
</head>
<body>

View File

@ -2,7 +2,7 @@ toolkit.jar:
% content global %content/global/ contentaccessible=yes
% content global-platform %content/global-platform/ platform
% content global-region %content/global-region/
% content jquery %content/jquery/
% content unstable-mozilla-private %content/jquery/
# provide the nsTransferable in nsDragAndDrop.js to extensions that have to
# work with Geckos from before 1.9, when there was a separate file
% override chrome://global/content/nsTransferable.js chrome://global/content/nsDragAndDrop.js

View File

@ -108,6 +108,15 @@ interface nsIXULRuntime : nsISupports
*/
void invalidateCachesOnRestart();
/**
* Starts a child process. This method is intented to pre-start a
* content child process so that when it is actually needed, it is
* ready to go.
*
* @throw NS_ERROR_NOT_AVAILABLE if not available.
*/
void ensureContentProcess();
/**
* Recorded timestamp indicating when the operating system began launching the app
*/
@ -117,13 +126,4 @@ interface nsIXULRuntime : nsISupports
* Recorded timestamp indicating when app startup began (essentially XRE_Main)
*/
readonly attribute unsigned long long startupTimestamp;
/**
* Starts a child process. This method is intented to pre-start a
* content child process so that when it is actually needed, it is
* ready to go.
*
* @throw NS_ERROR_NOT_AVAILABLE if not available.
*/
void ensureContentProcess();
};