• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1#!/usr/bin/env python
2
3# Copyright 2016 The Chromium Authors. All rights reserved.
4# Use of this source code is governed by a BSD-style license that can be
5# found in the LICENSE file.
6
7'''Tracing agent result wrapper for systrace.
8
9This class represents the captured trace results from a particular
10tool (e.g. atrace, ftrace.)
11'''
12
13
14class TraceResult(object):
15  def __init__(self, source_name, raw_data):
16    self.source_name = source_name
17    self.raw_data = raw_data
18