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.java163 * @param currentCallCount the value obtained by calling getCallCount().
165 * currentCallCount was obtained) that we will wait for.
173 public void waitForCallback(int currentCallCount, int numberOfCallsToWaitFor, long timeout, argument
175 assert mCallCount >= currentCallCount;
178 int callCountWhenDoneWaiting = currentCallCount + numberOfCallsToWaitFor;
189 public void waitForCallback(int currentCallCount, int numberOfCallsToWaitFor) argument
191 waitForCallback(currentCallCount, numberOfCallsToWaitFor,
195 public void waitForCallback(int currentCallCount) argument
197 waitForCallback(currentCallCount, 1);

Completed in 164 milliseconds