2012-05-21 04:12:37 -07: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-17 23:54:27 -08:00
|
|
|
|
|
|
|
#include "StartupTimeline.h"
|
2012-06-14 23:23:08 -07:00
|
|
|
#include "nsXULAppAPI.h"
|
2011-11-17 23:54:27 -08:00
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
|
2013-03-28 03:50:16 -07:00
|
|
|
TimeStamp StartupTimeline::sStartupTimeline[StartupTimeline::MAX_EVENT_ID];
|
2011-11-17 23:54:27 -08:00
|
|
|
const char *StartupTimeline::sStartupTimelineDesc[StartupTimeline::MAX_EVENT_ID] = {
|
|
|
|
#define mozilla_StartupTimeline_Event(ev, desc) desc,
|
|
|
|
#include "StartupTimeline.h"
|
|
|
|
#undef mozilla_StartupTimeline_Event
|
|
|
|
};
|
|
|
|
|
2012-06-14 23:23:08 -07:00
|
|
|
} /* namespace mozilla */
|
|
|
|
|
|
|
|
/**
|
2013-04-09 13:25:42 -07:00
|
|
|
* The XRE_StartupTimeline_Record function is to be used by embedding applications
|
|
|
|
* that can't use mozilla::StartupTimeline::Record() directly.
|
2012-06-14 23:23:08 -07:00
|
|
|
*/
|
|
|
|
void
|
|
|
|
XRE_StartupTimelineRecord(int aEvent, PRTime aWhen)
|
|
|
|
{
|
2013-03-28 03:50:16 -07:00
|
|
|
/* FIXME: This effectively becomes a no-op until we fix all the users to
|
|
|
|
* provide proper timestamps */
|
|
|
|
mozilla::StartupTimeline::Record((mozilla::StartupTimeline::Event) aEvent,
|
|
|
|
mozilla::TimeStamp());
|
2011-11-17 23:54:27 -08:00
|
|
|
}
|