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

  /cts/tests/tests/webkit/src/android/webkit/cts/
ChromeClient.java 22 class ChromeClient extends WaitForProgressClient {
27 public ChromeClient(WebViewOnUiThread onUiThread) {
WebSettingsTest.java 593 mOnUiThread.setWebChromeClient(new ChromeClient(mOnUiThread) {
742 final ChromeClient webChromeClient = new ChromeClient(mOnUiThread);
759 final ChromeClient webChromeClient = new ChromeClient(mOnUiThread);
    [all...]
WebViewTest.java     [all...]
  /external/chromium_org/third_party/WebKit/Source/core/page/
Chrome.h 33 class ChromeClient;
60 static PassOwnPtr<Chrome> create(Page*, ChromeClient*);
62 ChromeClient& client() { return *m_client; }
139 Chrome(Page*, ChromeClient*);
143 ChromeClient* m_client;
Chrome.cpp 30 #include "core/page/ChromeClient.h"
51 Chrome::Chrome(Page* page, ChromeClient* client)
63 PassOwnPtr<Chrome> Chrome::create(Page* page, ChromeClient* client)
159 static bool canRunModalIfDuringPageDismissal(Page* page, ChromeClient::DialogType dialog, const String& message)
171 return canRunModal() && canRunModalIfDuringPageDismissal(m_page, ChromeClient::HTMLDialog, String());
237 if (!canRunModalIfDuringPageDismissal(m_page, ChromeClient::AlertDialog, message))
254 if (!canRunModalIfDuringPageDismissal(m_page, ChromeClient::ConfirmDialog, message))
272 if (!canRunModalIfDuringPageDismissal(m_page, ChromeClient::PromptDialog, prompt))
327 // ChromeClient or platform. As of October 2011, all client
329 // ChromeClient::setToolTip. We'll work on tooltip tex
    [all...]
ChromeClient.h 83 class ChromeClient {
100 // The Frame pointer provides the ChromeClient with context about which
102 // should not be shown to the user until the ChromeClient of the newly
104 // The FrameLoadRequest parameter is only for ChromeClient to check if the
105 // request could be fulfilled. The ChromeClient should not load the request.
288 virtual ~ChromeClient() { }
Page.h 44 class ChromeClient;
99 ChromeClient* chromeClient;
  /external/chromium_org/third_party/WebKit/Source/core/svg/graphics/
SVGImageChromeClient.h 64 DEFINE_TYPE_CASTS(SVGImageChromeClient, ChromeClient, client, client->isSVGImageChromeClient(), client.isSVGImageChromeClient());
  /external/chromium_org/third_party/WebKit/Source/web/
PopupContainer.h 41 class ChromeClient;
131 // Returns the ChromeClient of the page this popup is associated with.
132 ChromeClient& chromeClient();
ChromeClientImpl.h 36 #include "core/page/ChromeClient.h"
68 class ChromeClientImpl : public WebCore::ChromeClient {
75 // ChromeClient methods:
160 // ChromeClient methods:
231 inline ChromeClientImpl* toChromeClientImpl(WebCore::ChromeClient& client)
PopupContainer.cpp 36 #include "core/page/ChromeClient.h"
194 widgetRectInScreen = chromeClient().rootViewToScreen(IntRect(popupX, popupY, targetSize.width(), targetSize.height()));
199 FloatRect windowRect = chromeClient().windowRect();
215 chromeClient().popupOpened(this, layoutAndCalculateWidgetRect(m_controlSize.height(), transformOffset, roundedIntPoint(m_controlPosition.p4())), false);
240 chromeClient().popupClosed(this);
368 ChromeClient& PopupContainer::chromeClient()
ChromeClientImpl.cpp 833 ChromeClient::CompositingTriggerFlags ChromeClientImpl::allowedCompositingTriggers() const
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/loader/
EmptyClients.cpp 45 static ChromeClient* dummyChromeClient = adoptPtr(new EmptyChromeClient).leakPtr();
46 pageClients.chromeClient = dummyChromeClient;
EmptyClients.h 36 #include "core/page/ChromeClient.h"
69 class EmptyChromeClient : public ChromeClient {
  /external/chromium_org/third_party/WebKit/Source/core/frame/
Frame.h 47 class ChromeClient;
139 ChromeClient& chromeClient() const;
Frame.cpp 55 #include "core/page/ChromeClient.h"
282 static ChromeClient& emptyChromeClient()
288 ChromeClient& Frame::chromeClient() const
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderLayerCompositor.cpp 212 , m_compositingTriggers(static_cast<ChromeClient::CompositingTriggerFlags>(ChromeClient::AllTriggers))
287 return hasAcceleratedCompositing() && (m_compositingTriggers & ChromeClient::ThreeDTransformTrigger);
    [all...]
RenderLayerCompositor.h 29 #include "core/page/ChromeClient.h"
328 ChromeClient::CompositingTriggerFlags m_compositingTriggers;
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
InspectorOverlay.cpp 64 InspectorOverlayChromeClient(ChromeClient& client, InspectorOverlay* overlay)
95 ChromeClient& m_client;
594 pageClients.chromeClient = m_overlayChromeClient.get();
  /external/chromium_org/third_party/WebKit/Source/core/accessibility/
AXObjectCache.cpp 65 #include "core/page/ChromeClient.h"
992 ChromeClient& client = obj->documentFrameView()->frame().page()->chrome().client();

Completed in 318 milliseconds