2012-05-21 11:12:37 +00: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/. */
|
2011-11-18 07:54:27 +00:00
|
|
|
|
|
|
|
#include "StartupTimeline.h"
|
2012-06-15 06:23:08 +00:00
|
|
|
#include "nsXULAppAPI.h"
|
2011-11-18 07:54:27 +00:00
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
|
|
|
|
PRTime StartupTimeline::sStartupTimeline[StartupTimeline::MAX_EVENT_ID];
|
|
|
|
const char *StartupTimeline::sStartupTimelineDesc[StartupTimeline::MAX_EVENT_ID] = {
|
|
|
|
#define mozilla_StartupTimeline_Event(ev, desc) desc,
|
|
|
|
#include "StartupTimeline.h"
|
|
|
|
#undef mozilla_StartupTimeline_Event
|
|
|
|
};
|
|
|
|
|
2012-06-15 06:23:08 +00:00
|
|
|
} /* namespace mozilla */
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The XRE_StartupTimeline_Record function is to be used by embedding applications
|
|
|
|
* that can't use mozilla::StartupTimeline::Record() directly.
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
XRE_StartupTimelineRecord(int aEvent, PRTime aWhen)
|
|
|
|
{
|
|
|
|
mozilla::StartupTimeline::Record((mozilla::StartupTimeline::Event) aEvent, aWhen);
|
2011-11-18 07:54:27 +00:00
|
|
|
}
|
2012-06-15 06:23:08 +00:00
|
|
|
|