Searched refs:m_client (Results 1 - 25 of 176) sorted by relevance

12345678

/external/webkit/Source/WebKit2/UIProcess/
H A DWebCookieManagerProxyClient.cpp35 if (!m_client.cookiesDidChange)
38 m_client.cookiesDidChange(toAPI(cookieManager), m_client.clientInfo);
H A DWebGeolocationProvider.cpp36 if (!m_client.startUpdating)
39 m_client.startUpdating(toAPI(geolocationManager), m_client.clientInfo);
44 if (!m_client.stopUpdating)
47 m_client.stopUpdating(toAPI(geolocationManager), m_client.clientInfo);
H A DWebIconDatabaseClient.cpp36 if (!m_client.didChangeIconForPageURL)
39 m_client.didChangeIconForPageURL(toAPI(iconDatabase), toAPI(url), m_client.clientInfo);
44 if (!m_client.didRemoveAllIcons)
47 m_client.didRemoveAllIcons(toAPI(iconDatabase), m_client.clientInfo);
H A DWebDownloadClient.cpp39 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
[all...]
H A DWebDatabaseManagerProxyClient.cpp35 if (!m_client.didModifyOrigin)
38 m_client.didModifyOrigin(toAPI(databaseManager), toAPI(origin), m_client.clientInfo);
43 if (!m_client.didModifyDatabase)
46 m_client.didModifyDatabase(toAPI(databaseManager), toAPI(origin), toAPI(databaseIdentifier.impl()), m_client.clientInfo);
H A DWebLoaderClient.cpp40 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
[all...]
H A DWebUIClient.cpp47 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
[all...]
H A DWebFindClient.cpp35 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);
H A DWebHistoryClient.cpp39 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
[all...]
/external/webkit/Source/WebCore/loader/
H A DThreadableLoaderClientWrapper.h51 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...]
/external/webkit/Source/WebKit2/UIProcess/win/
H A DWebTextCheckerClient.cpp40 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
[all...]
H A DWebUndoClient.cpp37 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
[all...]
/external/webkit/Source/WebKit2/WebProcess/InjectedBundle/
H A DInjectedBundleClient.cpp35 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
[all...]
H A DInjectedBundlePageResourceLoadClient.cpp38 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
[all...]
H A DInjectedBundlePageLoaderClient.cpp41 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
[all...]
H A DInjectedBundlePageEditorClient.cpp41 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
[all...]
H A DInjectedBundlePageUIClient.cpp41 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
[all...]
/external/webkit/Source/WebKit/chromium/src/
H A DDeviceOrientationClientProxy.cpp44 if (!m_client) // FIXME: Get rid of these null checks once device orientation is enabled by default.
46 m_client->setController(new WebDeviceOrientationController(c));
51 if (!m_client)
53 m_client->startUpdating();
58 if (!m_client)
60 m_client->stopUpdating();
65 if (!m_client)
69 m_lastOrientation = m_client->lastOrientation();
H A DGeolocationClientProxy.cpp39 : 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
[all...]
/external/webkit/Source/WebKit2/Shared/
H A DAPIClient.h41 m_client = *client;
43 memset(&m_client, 0, sizeof(m_client));
47 T m_client; member in class:WebKit::APIClient
/external/webkit/Source/WebCore/history/
H A DBackForwardController.cpp37 , 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
[all...]
/external/webkit/Source/WebKit2/WebProcess/InjectedBundle/API/c/
H A DWKBundlePageOverlay.cpp47 : 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
118 WKBundlePageOverlayClient m_client; member in class:PageOverlayClientImpl
[all...]
/external/webkit/Source/WebCore/dom/
H A DDeviceMotionController.cpp36 : 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
[all...]
/external/webkit/Source/WebKit2/UIProcess/Launcher/
H A DThreadLauncher.cpp34 : m_client(client)
53 if (!m_client) {
58 m_client->didFinishLaunching(this, identifier);
63 m_client = 0;
/external/webkit/Source/WebCore/page/
H A DGeolocationController.cpp38 , 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...]

Completed in 422 milliseconds

12345678