HomeSort by relevance Sort by last modified time
    Searched defs:chromeClient (Results 1 - 8 of 8) sorted by null

  /external/webkit/Source/WebCore/platform/brew/
PopupMenuBrew.cpp 57 ChromeClientBrew* chromeClient = static_cast<ChromeClientBrew*>(view->frame()->page()->chrome()->client());
58 ASSERT(chromeClient);
61 chromeClient->createSelectPopup(m_popupClient, index, rect);
67 ChromeClientBrew* chromeClient = static_cast<ChromeClientBrew*>(m_view->frame()->page()->chrome()->client());
68 ASSERT(chromeClient);
70 chromeClient->destroySelectPopup();
78 // This code must be moved to the concrete brew ChromeClient that is not in repository.
  /external/webkit/Source/WebCore/platform/efl/
PopupMenuEfl.cpp 53 ChromeClientEfl* chromeClient = static_cast<ChromeClientEfl*>(view->frame()->page()->chrome()->client());
54 ASSERT(chromeClient);
57 chromeClient->createSelectPopup(m_popupClient, index, rect);
63 ChromeClientEfl* chromeClient = static_cast<ChromeClientEfl*>(m_view->frame()->page()->chrome()->client());
64 ASSERT(chromeClient);
66 chromeClient->destroySelectPopup();
  /frameworks/base/tests/BrowserPowerTest/src/com/android/browserpowertest/
PowerTestActivity.java 48 private SimpleChromeClient chromeClient;
80 chromeClient = new SimpleChromeClient();
82 webView.setWebChromeClient(chromeClient);
113 chromeClient.resetJsTimeout();
  /frameworks/base/tests/DumpRenderTree/src/com/android/dumprendertree/
ReliabilityTestActivity.java 55 private SimpleChromeClient chromeClient;
84 chromeClient = new SimpleChromeClient();
86 webView.setWebChromeClient(chromeClient);
117 chromeClient.resetJsTimeout();
  /external/webkit/Source/WebCore/page/
Page.h 49 class ChromeClient;
110 ChromeClient* chromeClient;
  /external/webkit/Source/WebCore/rendering/
RenderLayerCompositor.cpp 35 #include "ChromeClient.h"
116 , m_compositingTriggers(static_cast<ChromeClient::CompositingTriggerFlags>(ChromeClient::AllTriggers))
178 ChromeClient* chromeClient = page->chrome()->client();
179 m_compositingTriggers = chromeClient->allowedCompositingTriggers();
194 return hasAcceleratedCompositing() && (m_compositingTriggers & ChromeClient::ThreeDTransformTrigger);
    [all...]
  /external/webkit/Source/WebCore/platform/chromium/
PopupMenuChromium.cpp 346 ChromeClientChromium* chromeClient = chromeClientChromium();
347 if (chromeClient) {
353 widgetRect = chromeClient->windowToScreen(IntRect(popupInitialCoordinate.x() + rightOffset, popupInitialCoordinate.y(), targetSize.width(), targetSize.height()));
357 FloatRect windowRect = chromeClient->windowRect();
384 IntRect frameInScreen = chromeClient->windowToScreen(frameRect());
400 ChromeClientChromium* chromeClient = chromeClientChromium();
401 if (chromeClient) {
403 chromeClient->popupOpened(this, layoutAndCalculateWidgetRect(popupRect.height(), popupRect.location()), false);
    [all...]
  /external/webkit/Source/WebKit/android/WebCoreSupport/
FrameLoaderClientAndroid.cpp     [all...]

Completed in 241 milliseconds