Lines Matching refs:method
39 * Main dispatch method, all calls from the host to InspectorController go
60 * @param {string} method name of the dispatch method.
62 ApuAgentDispatcher.dispatchToApu = function(method, args)
64 if (method !== "addRecordToTimeline" && method !== "updateResource" && method !== "addResource")
74 * using dispatchOut bound method.
76 function dispatch(method, var_args) {
80 if (method === "inspectedWindowCleared" || method === "reset" || method === "setAttachedWindow") {
90 if (method === "timelineProfilerWasStarted")
92 else if (method === "timelineProfilerWasStopped")
94 else if (method === "resourceTrackingWasEnabled")
96 else if (method === "resourceTrackingWasDisabled")
100 ApuAgentDispatcher.dispatchToApu(method, args);