Package com.google.speedtracer.client.timeline

Examples of com.google.speedtracer.client.timeline.ModelData


  private final JsIntegerMap<String> typesEncountered = JsIntegerMap.create().cast();

  public SluggishnessModel(DataDispatcher dataDispatcher) {
    this.dataDispatcher = dataDispatcher;

    graphModel = GraphModel.createGraphModel(new ModelData(), "", "ms", "",
        "%", false);

    sluggishness = new UiThreadUtilization(graphModel,
        defaultSluggishnessYScale);
View Full Code Here


  private final NetworkEventDispatcher sourceDispatcher;

  public NetworkVisualizationModel(DataDispatcher dataDispatcher) {
    this.dataDispatcher = dataDispatcher;
    graphModel = GraphModel.createGraphModel(new ModelData(), "", "ms", "", " requests", true);

    // Register for source events
    this.sourceDispatcher = dataDispatcher.getNetworkEventDispatcher();
    sourceDispatcher.addListener(this);
    dataDispatcher.getHintletEngineHost().addHintListener(this);
View Full Code Here

    public static MockUiThreadUtilization create() {
      return create(100);
    }

    public static MockUiThreadUtilization create(double maxUtilization) {
      GraphModel graphModel = GraphModel.createGraphModel(new ModelData(), "",
          "", "", "", false);
      return new MockUiThreadUtilization(graphModel, maxUtilization);
    }
View Full Code Here

TOP

Related Classes of com.google.speedtracer.client.timeline.ModelData

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.