blob: f52b04d816e30d9ec737100b45b4106a7322d07d [file] [log] [blame]
// Copyright 2015 The Chromium OS Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
'use strict';
/**
* @fileoverview Class to hold state while processing netlog messages.
*/
/** @constructor */
function LogSummary() {
this.managers = [];
this.logStartTime = -1;
this.logEndTime = -1;
this.prevLogLineTime = -1;
}