HomeSort by relevance Sort by last modified time
    Searched refs:clientInfo (Results 51 - 67 of 67) sorted by null

1 23

  /external/webkit/Source/WebKit2/UIProcess/
WebPolicyClient.cpp 44 m_client.decidePolicyForNavigationAction(toAPI(page), toAPI(frame), toAPI(type), toAPI(modifiers), toAPI(mouseButton), toAPI(request.get()), toAPI(listener), toAPI(userData), m_client.clientInfo);
55 m_client.decidePolicyForNewWindowAction(toAPI(page), toAPI(frame), toAPI(type), toAPI(modifiers), toAPI(mouseButton), toAPI(request.get()), toAPI(frameName.impl()), toAPI(listener), toAPI(userData), m_client.clientInfo);
67 m_client.decidePolicyForResponse(toAPI(page), toAPI(frame), toAPI(response.get()), toAPI(request.get()), toAPI(listener), toAPI(userData), m_client.clientInfo);
76 m_client.unableToImplementPolicy(toAPI(page), toAPI(frame), toAPI(error), toAPI(userData), m_client.clientInfo);
WebPageContextMenuClient.cpp 49 m_client.getContextMenuFromProposedMenu(toAPI(page), toAPI(proposedMenu.get()), &newMenu, toAPI(userData), m_client.clientInfo);
74 m_client.customContextMenuItemSelected(toAPI(page), toAPI(item.get()), m_client.clientInfo);
WebFormClient.cpp 46 m_client.willSubmitForm(toAPI(page), toAPI(frame), toAPI(sourceFrame), toAPI(textFieldsMap.get()), toAPI(userData), toAPI(listener), m_client.clientInfo);
  /external/webkit/Source/WebKit2/WebProcess/InjectedBundle/
InjectedBundlePagePolicyClient.cpp 45 WKBundlePagePolicyAction policy = m_client.decidePolicyForNavigationAction(toAPI(page), toAPI(frame), toAPI(action), toAPI(request.get()), &userDataToPass, m_client.clientInfo);
58 WKBundlePagePolicyAction policy = m_client.decidePolicyForNewWindowAction(toAPI(page), toAPI(frame), toAPI(action), toAPI(request.get()), toAPI(frameName.impl()), &userDataToPass, m_client.clientInfo);
72 WKBundlePagePolicyAction policy = m_client.decidePolicyForResponse(toAPI(page), toAPI(frame), toAPI(response.get()), toAPI(request.get()), &userDataToPass, m_client.clientInfo);
83 m_client.unableToImplementPolicy(toAPI(page), toAPI(frame), toAPI(error), &userDataToPass, m_client.clientInfo);
InjectedBundlePageContextMenuClient.cpp 54 m_client.getContextMenuFromDefaultMenu(toAPI(page), toAPI(hitTestResult), toAPI(defaultMenuArray.get()), &newMenuWK, &userDataToPass, m_client.clientInfo);
  /external/webkit/Tools/TestWebKitAPI/Tests/WebKit2/
Find.cpp 38 static void didFinishLoadForFrame(WKPageRef page, WKFrameRef frame, WKTypeRef userData, const void* clientInfo)
43 static void didCountStringMatches(WKPageRef page, WKStringRef string, unsigned numMatches, const void* clientInfo)
HitTestResultNodeHandle.cpp 44 static void didReceiveMessageFromInjectedBundle(WKContextRef context, WKStringRef messageName, WKTypeRef messageBody, const void* clientInfo)
66 injectedBundleClient.clientInfo = 0;
ResponsivenessTimerDoesntFireEarly.cpp 58 injectedBundleClient.clientInfo = 0;
69 loaderClient.clientInfo = 0;
ForceRepaint.cpp 44 static void didFinishLoadForFrame(WKPageRef page, WKFrameRef frame, WKTypeRef userData, const void* clientInfo)
HitTestResultNodeHandle_Bundle.cpp 43 static void getContextMenuFromDefaultMenu(WKBundlePageRef page, WKBundleHitTestResultRef hitTestResult, WKArrayRef defaultMenu, WKArrayRef* newMenu, WKTypeRef* userData, const void* clientInfo)
  /external/webkit/Tools/WebKitTestRunner/InjectedBundle/
InjectedBundle.cpp 57 void InjectedBundle::didCreatePage(WKBundleRef bundle, WKBundlePageRef page, const void* clientInfo)
59 static_cast<InjectedBundle*>(const_cast<void*>(clientInfo))->didCreatePage(page);
62 void InjectedBundle::willDestroyPage(WKBundleRef bundle, WKBundlePageRef page, const void* clientInfo)
64 static_cast<InjectedBundle*>(const_cast<void*>(clientInfo))->willDestroyPage(page);
67 void InjectedBundle::didInitializePageGroup(WKBundleRef bundle, WKBundlePageGroupRef pageGroup, const void* clientInfo)
69 static_cast<InjectedBundle*>(const_cast<void*>(clientInfo))->didInitializePageGroup(pageGroup);
72 void InjectedBundle::didReceiveMessage(WKBundleRef bundle, WKStringRef messageName, WKTypeRef messageBody, const void *clientInfo)
74 static_cast<InjectedBundle*>(const_cast<void*>(clientInfo))->didReceiveMessage(messageName, messageBody);
  /external/webkit/Tools/MiniBrowser/mac/
AppDelegate.m 39 void didRecieveMessageFromInjectedBundle(WKContextRef context, WKStringRef messageName, WKTypeRef messageBody, const void *clientInfo)
65 static void didNavigateWithNavigationData(WKContextRef context, WKPageRef page, WKNavigationDataRef navigationData, WKFrameRef frame, const void *clientInfo)
80 static void didPerformClientRedirect(WKContextRef context, WKPageRef page, WKURLRef sourceURL, WKURLRef destinationURL, WKFrameRef frame, const void *clientInfo)
89 static void didPerformServerRedirect(WKContextRef context, WKPageRef page, WKURLRef sourceURL, WKURLRef destinationURL, WKFrameRef frame, const void *clientInfo)
98 static void didUpdateHistoryTitle(WKContextRef context, WKPageRef page, WKStringRef title, WKURLRef URL, WKFrameRef frame, const void *clientInfo)
107 static void populateVisitedLinks(WKContextRef context, const void *clientInfo)
142 0, /* clientInfo */
  /external/webkit/Tools/WebKitTestRunner/
TestController.h 85 static void processDidCrash(WKPageRef, const void* clientInfo);
90 static void runModal(WKPageRef, const void* clientInfo);
  /external/webkit/Source/WebCore/platform/network/cf/
ResourceHandleCFNet.cpp 132 CFURLRequestRef willSendRequest(CFURLConnectionRef conn, CFURLRequestRef cfRequest, CFURLResponseRef cfRedirectResponse, const void* clientInfo)
134 ResourceHandle* handle = static_cast<ResourceHandle*>(const_cast<void*>(clientInfo));
184 void didReceiveResponse(CFURLConnectionRef conn, CFURLResponseRef cfResponse, const void* clientInfo)
186 ResourceHandle* handle = static_cast<ResourceHandle*>(const_cast<void*>(clientInfo));
202 void didReceiveData(CFURLConnectionRef conn, CFDataRef data, CFIndex originalLength, const void* clientInfo)
204 ResourceHandle* handle = static_cast<ResourceHandle*>(const_cast<void*>(clientInfo));
214 static void didSendBodyData(CFURLConnectionRef conn, CFIndex bytesWritten, CFIndex totalBytesWritten, CFIndex totalBytesExpectedToWrite, const void *clientInfo)
216 ResourceHandle* handle = static_cast<ResourceHandle*>(const_cast<void*>(clientInfo));
222 static Boolean shouldUseCredentialStorageCallback(CFURLConnectionRef conn, const void* clientInfo)
224 ResourceHandle* handle = const_cast<ResourceHandle*>(static_cast<const ResourceHandle*>(clientInfo));
    [all...]
  /external/webkit/Tools/TestWebKitAPI/Tests/WebKit2/win/
HideFindIndicator.cpp 37 static void didFinishLoadForFrame(WKPageRef page, WKFrameRef frame, WKTypeRef userData, const void* clientInfo)
  /external/chromium/chrome/browser/resources/gpu_internals/
browser_bridge_tests.js 21 clientInfo: {"blacklist_version":"1.10","cl":"80750-dirty","command_line":"./out/Debug/chrome --flag-switches-begin --show-composited-layer-borders --show-fps-counter --flag-switches-end","official":"Developer Build","version":"12.0.729.0","version_mod":""},
27 clientInfo: undefined,
33 clientInfo: undefined,
64 clientInfo: undefined,
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
ContactsDatabaseHelper.java     [all...]

Completed in 505 milliseconds

1 23