Package com.google.speedtracer.client.visualizations.view

Examples of com.google.speedtracer.client.visualizations.view.SluggishnessDetailView$EventWaterfallFilter


   * Required implementation of the constructor for the DetailsView.
   */
  @Override
  public SluggishnessDetailView createDetailsView(Container container,
      MainTimeLine timeLine) {
    return new SluggishnessDetailView(container, this,
        getModel().getDataDispatcher().getUiEventDispatcher(), resources);
  }
View Full Code Here


  public void onEventRefresh(UiEvent event) {
    this.getDetailsView().refreshRecord(event);
  }

  public void onEventWithinWindow(UiEvent event) {
    SluggishnessDetailView details = getDetailsView();
    if (details != null) {
      details.shortCircuitAddEvent(event);
    }
  }
View Full Code Here

TOP

Related Classes of com.google.speedtracer.client.visualizations.view.SluggishnessDetailView$EventWaterfallFilter

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.