HomeSort by relevance Sort by last modified time
    Searched refs:callbackId (Results 1 - 13 of 13) sorted by null

  /external/chromium_org/android_webview/java/src/org/chromium/android_webview/
AwQuotaManagerBridge.java 108 int callbackId = getNextId();
109 assert !mPendingGetOriginCallbacks.containsKey(callbackId);
110 mPendingGetOriginCallbacks.put(callbackId, callback);
111 nativeGetOrigins(mNativeAwQuotaManagerBridgeImpl, callbackId);
119 int callbackId = getNextId();
120 assert !mPendingGetQuotaForOriginCallbacks.containsKey(callbackId);
121 mPendingGetQuotaForOriginCallbacks.put(callbackId, callback);
122 nativeGetUsageAndQuotaForOrigin(mNativeAwQuotaManagerBridgeImpl, origin, callbackId, true);
130 int callbackId = getNextId();
131 assert !mPendingGetUsageForOriginCallbacks.containsKey(callbackId);
    [all...]
  /external/chromium_org/chrome/renderer/resources/extensions/
app_custom_bindings.js 49 function onInstallStateResponse(state, callbackId) {
50 var callback = callbacks[callbackId];
51 delete callbacks[callbackId];
67 var callbackId = nextCallbackId++;
68 callbacks[callbackId] = callback;
69 appNatives.GetInstallState(callbackId);
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
InspectorDOMDebuggerAgent.h 83 void didRequestAnimationFrame(Document*, int callbackId);
84 void didCancelAnimationFrame(Document*, int callbackId);
85 void willFireAnimationFrame(Document*, int callbackId);
InspectorTimelineAgent.h 194 void didRequestAnimationFrame(Document*, int callbackId);
195 void didCancelAnimationFrame(Document*, int callbackId);
196 bool willFireAnimationFrame(Document*, int callbackId);
TimelineRecordFactory.h 91 static PassRefPtr<JSONObject> createAnimationFrameData(int callbackId);
TimelineRecordFactory.cpp 216 PassRefPtr<JSONObject> TimelineRecordFactory::createAnimationFrameData(int callbackId)
219 data->setNumber("id", callbackId);
InspectorTimelineAgent.cpp 588 void InspectorTimelineAgent::didRequestAnimationFrame(Document* document, int callbackId)
590 appendRecord(TimelineRecordFactory::createAnimationFrameData(callbackId), TimelineRecordType::RequestAnimationFrame, true, document->frame());
593 void InspectorTimelineAgent::didCancelAnimationFrame(Document* document, int callbackId)
595 appendRecord(TimelineRecordFactory::createAnimationFrameData(callbackId), TimelineRecordType::CancelAnimationFrame, true, document->frame());
598 bool InspectorTimelineAgent::willFireAnimationFrame(Document* document, int callbackId)
600 pushCurrentRecord(TimelineRecordFactory::createAnimationFrameData(callbackId), TimelineRecordType::FireAnimationFrame, false, document->frame());
InspectorDOMDebuggerAgent.cpp 425 void InspectorDOMDebuggerAgent::didRequestAnimationFrame(Document* document, int callbackId)
430 void InspectorDOMDebuggerAgent::didCancelAnimationFrame(Document* document, int callbackId)
435 void InspectorDOMDebuggerAgent::willFireAnimationFrame(Document* document, int callbackId)
InspectorInstrumentation.idl 361 void didRequestAnimationFrame([Keep] Document*, int callbackId);
364 void didCancelAnimationFrame([Keep] Document*, int callbackId);
367 InspectorInstrumentationCookie willFireAnimationFrame([Keep] Document*, int callbackId);
  /frameworks/av/media/libeffects/lvm/lib/Bundle/src/
LVM_Private.h 277 LVM_INT16 callbackId);
LVM_Control.c     [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/
InspectorBackend.js 60 var callbackId = this.nextCallbackId();
64 this._callbacks[callbackId] = callback;
69 return callbackId;
  /external/chromium_org/chrome/browser/resources/google_now/
utility.js 251 var callbackId = nextCallbackId++;
257 pendingCallbacks[callbackId] = new Error().stack;
271 delete pendingCallbacks[callbackId];

Completed in 190 milliseconds