Searched defs:currentCallCount (Results 1 - 1 of 1) sorted by relevance

/external/chromium_org/content/public/test/android/javatests/src/org/chromium/content/browser/test/util/
H A DCallbackHelper.java159 * @param currentCallCount the value obtained by calling getCallCount().
161 * currentCallCount was obtained) that we will wait for.
169 public void waitForCallback(int currentCallCount, int numberOfCallsToWaitFor, long timeout, argument
171 assert mCallCount >= currentCallCount;
174 int callCountWhenDoneWaiting = currentCallCount + numberOfCallsToWaitFor;
185 public void waitForCallback(int currentCallCount, int numberOfCallsToWaitFor) argument
187 waitForCallback(currentCallCount, numberOfCallsToWaitFor,
191 public void waitForCallback(int currentCallCount) argument
193 waitForCallback(currentCallCount, 1);

Completed in 1183 milliseconds