List of usage examples for com.google.gwt.chrome.crx.client Debugger sendCommand
public native static void sendCommand(int tabId, String method) ;
From source file:com.google.speedtracer.client.model.ChromeDebuggerDataInstance.java
License:Apache License
private static void stopTimeline(int tabId) { Debugger.sendCommand(tabId, "Timeline.stop"); }
From source file:com.google.speedtracer.client.model.ChromeDebuggerDataInstance.java
License:Apache License
private static void stopNetwork(int tabId) { Debugger.sendCommand(tabId, "Network.disable"); }
From source file:com.google.speedtracer.client.model.ChromeDebuggerDataInstance.java
License:Apache License
private static void stopPage(int tabId) { Debugger.sendCommand(tabId, "Page.disable"); }