Example usage for com.google.gwt.chrome.crx.client Debugger sendCommand

List of usage examples for com.google.gwt.chrome.crx.client Debugger sendCommand

Introduction

In this page you can find the example usage for com.google.gwt.chrome.crx.client Debugger sendCommand.

Prototype

public native static void sendCommand(int tabId, String method) ;

Source Link

Usage

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");
}