4c68a97ce5
Write to the Trace Event JSON file in just one place, protected by a mutex. Handle metadata events separately. We want them to propagate to the output if Event Trace generation is just enabled, regardless whether it has been turned on or not. We can send the metadata for the Kit process only after we have opened the docuemnt as sending a Trace Event to WSD uses the (singleton) Document object in Kit. Introduce some new functions for the above and adapt callers appropriately. Generate a Complete event for the handling of one image tile, from setting the src attribute of the Image object to finishing the onload function. Signed-off-by: Tor Lillqvist <tml@collabora.com> Change-Id: I5978e0fb2495e0d2dc479bf861eb4ac7da03fa50
22 lines
666 B
C++
22 lines
666 B
C++
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4; fill-column: 100 -*- */
|
|
/*
|
|
* 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/.
|
|
*/
|
|
|
|
// Compile and link this into test and utility executables that need it to link
|
|
|
|
#include <common/TraceEvent.hpp>
|
|
|
|
void TraceEvent::emitOneRecordingIfEnabled(const std::string &recording)
|
|
{
|
|
(void) recording;
|
|
}
|
|
|
|
void TraceEvent::emitOneRecording(const std::string &recording)
|
|
{
|
|
(void) recording;
|
|
}
|
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|