Bug 1104414, Patch 1: Fix build error: 'UNKNOWN' is not a member of 'mozilla::tasktracer::SourceEventType', r=sinker.

This commit is contained in:
Gina Yeh 2014-11-25 19:51:17 +08:00
Родитель ffe9fc69ce
Коммит 829a3d23d5
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -36,7 +36,7 @@ Message::Message()
#ifdef MOZ_TASK_TRACER
header()->source_event_id = 0;
header()->parent_task_id = 0;
header()->source_event_type = SourceEventType::UNKNOWN;
header()->source_event_type = SourceEventType::Unknown;
#endif
InitLoggingVariables();
}
@ -61,7 +61,7 @@ Message::Message(int32_t routing_id, msgid_t type, PriorityValue priority,
#ifdef MOZ_TASK_TRACER
header()->source_event_id = 0;
header()->parent_task_id = 0;
header()->source_event_type = SourceEventType::UNKNOWN;
header()->source_event_type = SourceEventType::Unknown;
#endif
InitLoggingVariables(name);
}