Package com.google.speedtracer.server

Examples of com.google.speedtracer.server.SelfTimeVisitor


  public double getStyleRecalculationDuration() {
    return styleRecalculationDuration;
  }

  private void calcSelfTime() throws JsonException {
    SelfTimeVisitor selfTimeVisitor = new SelfTimeVisitor();
    for (int i = 0, length = records.getLength(); i < length; ++i) {
      JsonObject record = records.get(i).asObject();
      JsonTraverser.get().traverse(record, selfTimeVisitor);
    }
  }
View Full Code Here

TOP

Related Classes of com.google.speedtracer.server.SelfTimeVisitor

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.