HomeSort by relevance Sort by last modified time
    Searched full:m_client (Results 1 - 25 of 179) sorted by null

1 2 3 4 5 6 7 8

  /external/webkit/Source/WebKit2/UIProcess/
WebLoaderClient.cpp 40 if (!m_client.didStartProvisionalLoadForFrame)
43 m_client.didStartProvisionalLoadForFrame(toAPI(page), toAPI(frame), toAPI(userData), m_client.clientInfo);
48 if (!m_client.didReceiveServerRedirectForProvisionalLoadForFrame)
51 m_client.didReceiveServerRedirectForProvisionalLoadForFrame(toAPI(page), toAPI(frame), toAPI(userData), m_client.clientInfo);
56 if (!m_client.didFailProvisionalLoadWithErrorForFrame)
59 m_client.didFailProvisionalLoadWithErrorForFrame(toAPI(page), toAPI(frame), toAPI(error), toAPI(userData), m_client.clientInfo);
64 if (!m_client.didCommitLoadForFrame
    [all...]
WebUIClient.cpp 47 if (!m_client.createNewPage)
68 return adoptRef(toImpl(m_client.createNewPage(toAPI(page), toAPI(featuresMap.get()), toAPI(modifiers), toAPI(button), m_client.clientInfo)));
73 if (!m_client.showPage)
76 m_client.showPage(toAPI(page), m_client.clientInfo);
81 if (!m_client.close)
84 m_client.close(toAPI(page), m_client.clientInfo);
89 if (!m_client.takeFocus
    [all...]
WebDownloadClient.cpp 39 if (!m_client.didStart)
42 m_client.didStart(toAPI(webContext), toAPI(downloadProxy), m_client.clientInfo);
47 if (!m_client.didReceiveAuthenticationChallenge)
50 m_client.didReceiveAuthenticationChallenge(toAPI(webContext), toAPI(downloadProxy), toAPI(authenticationChallengeProxy), m_client.clientInfo);
55 if (!m_client.didReceiveResponse)
58 m_client.didReceiveResponse(toAPI(webContext), toAPI(downloadProxy), toAPI(WebURLResponse::create(response).get()), m_client.clientInfo);
63 if (!m_client.didReceiveData
    [all...]
WebHistoryClient.cpp 39 if (!m_client.didNavigateWithNavigationData)
43 m_client.didNavigateWithNavigationData(toAPI(context), toAPI(page), toAPI(navigationData.get()), toAPI(frame), m_client.clientInfo);
48 if (!m_client.didPerformClientRedirect)
51 m_client.didPerformClientRedirect(toAPI(context), toAPI(page), toURLRef(sourceURL.impl()), toURLRef(destinationURL.impl()), toAPI(frame), m_client.clientInfo);
56 if (!m_client.didPerformServerRedirect)
59 m_client.didPerformServerRedirect(toAPI(context), toAPI(page), toURLRef(sourceURL.impl()), toURLRef(destinationURL.impl()), toAPI(frame), m_client.clientInfo);
64 if (!m_client.didUpdateHistoryTitle
    [all...]
WebResourceLoadClient.cpp 39 if (!m_client.didInitiateLoadForResource)
43 return m_client.didInitiateLoadForResource(toAPI(page), toAPI(frame), resourceIdentifier, toAPI(request.get()), pageIsProvisionallyLoading, m_client.clientInfo);
48 if (!m_client.didSendRequestForResource)
55 return m_client.didSendRequestForResource(toAPI(page), toAPI(frame), resourceIdentifier, toAPI(request.get()), toAPI(response.get()), m_client.clientInfo);
60 if (!m_client.didReceiveResponseForResource)
64 return m_client.didReceiveResponseForResource(toAPI(page), toAPI(frame), resourceIdentifier, toAPI(response.get()), m_client.clientInfo);
69 if (!m_client.didReceiveContentLengthForResource
    [all...]
WebFindClient.cpp 35 if (!m_client.didFindString)
38 m_client.didFindString(toAPI(page), toAPI(string.impl()), matchCount, m_client.clientInfo);
44 if (!m_client.didFailToFindString)
47 m_client.didFailToFindString(toAPI(page), toAPI(string.impl()), m_client.clientInfo);
52 if (!m_client.didCountStringMatches)
55 m_client.didCountStringMatches(toAPI(page), toAPI(string.impl()), matchCount, m_client.clientInfo);
WebPolicyClient.cpp 39 if (!m_client.decidePolicyForNavigationAction)
44 m_client.decidePolicyForNavigationAction(toAPI(page), toAPI(frame), toAPI(type), toAPI(modifiers), toAPI(mouseButton), toAPI(request.get()), toAPI(listener), toAPI(userData), m_client.clientInfo);
50 if (!m_client.decidePolicyForNewWindowAction)
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);
61 if (!m_client.decidePolicyForResponse)
67 m_client.decidePolicyForResponse(toAPI(page), toAPI(frame), toAPI(response.get()), toAPI(request.get()), toAPI(listener), toAPI(userData), m_client.clientInfo);
73 if (!m_client.unableToImplementPolicy
    [all...]
  /external/webkit/Source/WebKit2/WebProcess/InjectedBundle/
InjectedBundlePageLoaderClient.cpp 41 if (!m_client.didStartProvisionalLoadForFrame)
45 m_client.didStartProvisionalLoadForFrame(toAPI(page), toAPI(frame), &userDataToPass, m_client.clientInfo);
51 if (!m_client.didReceiveServerRedirectForProvisionalLoadForFrame)
55 m_client.didReceiveServerRedirectForProvisionalLoadForFrame(toAPI(page), toAPI(frame), &userDataToPass, m_client.clientInfo);
61 if (!m_client.didFailProvisionalLoadWithErrorForFrame)
65 m_client.didFailProvisionalLoadWithErrorForFrame(toAPI(page), toAPI(frame), toAPI(error), &userDataToPass, m_client.clientInfo);
71 if (!m_client.didCommitLoadForFrame
    [all...]
InjectedBundlePageEditorClient.cpp 41 if (m_client.shouldBeginEditing) {
43 return m_client.shouldBeginEditing(toAPI(page), toAPI(rangeHandle.get()), m_client.clientInfo);
50 if (m_client.shouldEndEditing) {
52 return m_client.shouldEndEditing(toAPI(page), toAPI(rangeHandle.get()), m_client.clientInfo);
59 if (m_client.shouldInsertNode) {
62 return m_client.shouldInsertNode(toAPI(page), toAPI(nodeHandle.get()), toAPI(rangeToReplaceHandle.get()), toAPI(action), m_client.clientInfo);
69 if (m_client.shouldInsertText)
    [all...]
InjectedBundlePageUIClient.cpp 41 if (m_client.willAddMessageToConsole)
42 m_client.willAddMessageToConsole(toAPI(page), toAPI(message.impl()), lineNumber, m_client.clientInfo);
47 if (m_client.willSetStatusbarText)
48 m_client.willSetStatusbarText(toAPI(page), toAPI(statusbarText.impl()), m_client.clientInfo);
53 if (m_client.willRunJavaScriptAlert)
54 m_client.willRunJavaScriptAlert(toAPI(page), toAPI(alertText.impl()), toAPI(frame), m_client.clientInfo);
59 if (m_client.willRunJavaScriptConfirm
    [all...]
InjectedBundlePageResourceLoadClient.cpp 38 if (!m_client.didInitiateLoadForResource)
41 m_client.didInitiateLoadForResource(toAPI(page), toAPI(frame), identifier, toAPI(request), pageIsProvisionallyLoading, m_client.clientInfo);
46 if (!m_client.willSendRequestForFrame)
49 RefPtr<WebURLRequest> returnedRequest = adoptRef(toImpl(m_client.willSendRequestForFrame(toAPI(page), toAPI(frame), identifier, toAPI(request), toAPI(redirectResponse), m_client.clientInfo)));
58 if (!m_client.didReceiveResponseForResource)
61 m_client.didReceiveResponseForResource(toAPI(page), toAPI(frame), identifier, toAPI(response), m_client.clientInfo);
66 if (!m_client.didReceiveContentLengthForResource
    [all...]
InjectedBundleClient.cpp 35 if (!m_client.didCreatePage)
38 m_client.didCreatePage(toAPI(bundle), toAPI(page), m_client.clientInfo);
43 if (!m_client.willDestroyPage)
46 m_client.willDestroyPage(toAPI(bundle), toAPI(page), m_client.clientInfo);
51 if (!m_client.didInitializePageGroup)
54 m_client.didInitializePageGroup(toAPI(bundle), toAPI(pageGroup), m_client.clientInfo);
59 if (!m_client.didReceiveMessage
    [all...]
InjectedBundlePageFormClient.cpp 43 if (!m_client.textFieldDidBeginEditing)
47 m_client.textFieldDidBeginEditing(toAPI(page), toAPI(nodeHandle.get()), toAPI(frame), m_client.clientInfo);
52 if (!m_client.textFieldDidEndEditing)
56 m_client.textFieldDidEndEditing(toAPI(page), toAPI(nodeHandle.get()), toAPI(frame), m_client.clientInfo);
61 if (!m_client.textDidChangeInTextField)
65 m_client.textDidChangeInTextField(toAPI(page), toAPI(nodeHandle.get()), toAPI(frame), m_client.clientInfo);
70 if (!m_client.textDidChangeInTextArea
    [all...]
  /external/webkit/Source/WebKit2/UIProcess/win/
WebTextCheckerClient.cpp 40 if (!m_client.continuousSpellCheckingAllowed)
43 return m_client.continuousSpellCheckingAllowed(m_client.clientInfo);
48 if (!m_client.continuousSpellCheckingEnabled)
51 return m_client.continuousSpellCheckingEnabled(m_client.clientInfo);
56 if (!m_client.setContinuousSpellCheckingEnabled)
59 m_client.setContinuousSpellCheckingEnabled(enabled, m_client.clientInfo);
64 if (!m_client.grammarCheckingEnabled
    [all...]
WebUndoClient.cpp 37 if (!m_client.registerEditCommand)
41 m_client.registerEditCommand(toAPI(view), toAPI(command.release().releaseRef()), (undoOrRedo == WebPageProxy::Undo) ? kWKViewUndo : kWKViewRedo, m_client.clientInfo);
46 if (!m_client.clearAllEditCommands)
49 m_client.clearAllEditCommands(toAPI(view), m_client.clientInfo);
54 if (!m_client.canUndoRedo)
57 return m_client.canUndoRedo(toAPI(view), undoOrRedo, m_client.clientInfo);
62 if (!m_client.executeUndoRedo
    [all...]
  /external/webkit/Source/WebCore/loader/
ThreadableLoaderClientWrapper.h 51 m_client = 0;
61 if (m_client)
62 m_client->didSendData(bytesSent, totalBytesToBeSent);
67 if (m_client)
68 m_client->didReceiveResponse(response);
73 if (m_client)
74 m_client->didReceiveData(data, dataLength);
79 if (m_client)
80 m_client->didReceiveCachedMetadata(data, dataLength);
86 if (m_client)
117 ThreadableLoaderClient* m_client; member in class:WebCore::ThreadableLoaderClientWrapper
    [all...]
SubresourceLoader.cpp 48 , m_client(client)
112 if (!previousURL.isNull() && !newRequest.isNull() && previousURL != newRequest.url() && m_client)
113 m_client->willSendRequest(this, newRequest, redirectResponse);
120 if (m_client)
121 m_client->didSendData(this, bytesSent, totalBytesToBeSent);
135 if (m_client)
136 m_client->didReceiveResponse(this, r);
148 if (m_client)
149 m_client->didReceiveData(this, buffer->data(), buffer->size());
168 if (!m_loadingMultipartContent && m_client)
    [all...]
  /external/webkit/Source/WebKit2/WebProcess/InjectedBundle/API/c/
WKBundlePageOverlay.cpp 47 : m_client()
50 m_client = *client;
61 if (!m_client.willMoveToPage)
64 m_client.willMoveToPage(toAPI(pageOverlay), toAPI(page), m_client.clientInfo);
69 if (!m_client.didMoveToPage)
72 m_client.didMoveToPage(toAPI(pageOverlay), toAPI(page), m_client.clientInfo);
77 if (!m_client.drawRect)
80 m_client.drawRect(toAPI(pageOverlay), graphicsContext.platformContext(), toAPI(dirtyRect), m_client.clientI (…)
118 WKBundlePageOverlayClient m_client; member in class:PageOverlayClientImpl
    [all...]
  /external/webkit/Source/WebCore/inspector/
InspectorFrontendHost.cpp 121 : m_client(client)
131 ASSERT(!m_client);
136 m_client = 0;
146 if (m_client)
147 m_client->frontendLoaded();
152 if (m_client)
153 m_client->requestAttachWindow();
158 if (m_client)
159 m_client->requestDetachWindow();
164 if (m_client) {
    [all...]
  /external/webkit/Source/WebCore/page/
Chrome.cpp 60 , m_client(client)
62 ASSERT(m_client);
67 m_client->chromeDestroyed();
72 m_client->invalidateWindow(updateRect, immediate);
77 m_client->invalidateContentsAndWindow(updateRect, immediate);
82 m_client->invalidateContentsForSlowScroll(updateRect, immediate);
87 m_client->scroll(scrollDelta, rectToScroll, clipRect);
93 m_client->delegatedScrollRequested(scrollPoint);
99 return m_client->screenToWindow(point);
104 return m_client->windowToScreen(rect)
    [all...]
GeolocationController.cpp 38 , m_client(client)
46 if (m_client)
47 m_client->geolocationDestroyed();
59 if (m_client) {
61 m_client->setEnableHighAccuracy(true);
66 m_client->startUpdating();
78 if (m_client) {
80 m_client->stopUpdating();
82 m_client->setEnableHighAccuracy(false);
88 if (m_client)
    [all...]
  /external/webkit/Source/WebCore/dom/
DeviceMotionController.cpp 36 : m_client(client)
39 ASSERT(m_client);
40 m_client->setController(this);
45 m_client->deviceMotionControllerDestroyed();
51 ASSERT(!m_client || m_client->currentDeviceMotion());
54 RefPtr<DeviceMotionData> deviceMotionData = m_client ? m_client->currentDeviceMotion() : DeviceMotionData::create();
68 if (!m_client || m_client->currentDeviceMotion())
    [all...]
  /external/webkit/Source/WebKit/chromium/src/
GeolocationClientProxy.cpp 39 : m_client(client)
50 if (m_client) {
52 m_client->setController(new WebGeolocationController(controller));
58 if (m_client)
59 m_client->geolocationDestroyed();
64 m_client->startUpdating();
69 m_client->stopUpdating();
74 m_client->setEnableHighAccuracy(highAccuracy);
80 if (m_client->lastPosition(webPosition))
90 m_client->requestPermission(WebGeolocationPermissionRequest(geolocation))
    [all...]
AssociatedURLLoader.cpp 72 void clearClient() { m_client = 0; }
78 WebURLLoaderClient* m_client; member in class:WebKit::AssociatedURLLoader::ClientAdapter
90 , m_client(client)
95 ASSERT(m_client);
100 if (!m_client)
105 m_client->willSendRequest(m_loader, wrappedNewRequest, wrappedRedirectResponse);
110 if (!m_client)
113 m_client->didSendData(m_loader, bytesSent, totalBytesToBeSent);
119 m_client->didReceiveResponse(m_loader, wrappedResponse);
124 if (!m_client)
    [all...]
  /external/webkit/Source/WebCore/history/
BackForwardController.cpp 37 , m_client(client)
39 if (!m_client)
40 m_client = BackForwardListImpl::create(page);
69 m_client->addItem(item);
74 m_client->goToItem(item);
84 return m_client->backListCount();
89 return m_client->forwardListCount();
94 return m_client->itemAtIndex(i);
99 return m_client->isActive();
104 m_client->close()
    [all...]

Completed in 1412 milliseconds

1 2 3 4 5 6 7 8