HomeSort by relevance Sort by last modified time
    Searched refs:webViewCore (Results 1 - 25 of 31) sorted by null

1 2

  /external/webkit/Source/WebKit/android/jni/
WebFrameView.h 36 class WebViewCore;
40 WebFrameView(WebCore::FrameView* frameView, WebViewCore* webViewCore);
46 WebViewCore* webViewCore() const {
58 WebViewCore* mWebViewCore;
WebFrameView.cpp 38 #include "WebViewCore.h"
44 WebFrameView::WebFrameView(WebCore::FrameView* frameView, WebViewCore* webViewCore)
47 , mWebViewCore(webViewCore) {
DeviceMotionClientImpl.cpp 29 #include "WebViewCore.h"
47 DeviceMotionClientImpl::DeviceMotionClientImpl(WebViewCore* webViewCore)
48 : m_webViewCore(webViewCore)
61 // Lazily get the Java object. We can't do this until the WebViewCore is all
DeviceOrientationClientImpl.cpp 29 #include "WebViewCore.h"
47 DeviceOrientationClientImpl::DeviceOrientationClientImpl(WebViewCore* webViewCore)
48 : m_webViewCore(webViewCore)
61 // Lazily get the Java object. We can't do this until the WebViewCore is all
DeviceMotionAndOrientationManager.cpp 32 #include "WebViewCore.h"
43 DeviceMotionAndOrientationManager::DeviceMotionAndOrientationManager(WebViewCore* webViewCore)
45 , m_webViewCore(webViewCore)
119 static WebViewCore* getWebViewCore(JNIEnv* env, jobject webViewCoreObject)
121 jclass webViewCoreClass = env->FindClass("android/webkit/WebViewCore");
124 return reinterpret_cast<WebViewCore*>(env->GetIntField(webViewCoreObject, nativeClassField));
154 { "nativeSetUseMock", "(Landroid/webkit/WebViewCore;)V", (void*) setUseMock },
155 { "nativeOnMotionChange", "(Landroid/webkit/WebViewCore;ZDZDZDD)V", (void*) onMotionChange },
156 { "nativeSetMockOrientation", "(Landroid/webkit/WebViewCore;ZDZDZD)V", (void*) setMockOrientation }
    [all...]
WebCoreFrameBridge.h 54 class WebViewCore;
106 void closeWindow(WebViewCore* webViewCore);
AndroidHitTestResult.cpp 46 #include "WebViewCore.h"
86 jclass hitTestClass = env->FindClass("android/webkit/WebViewCore$WebKitHitTest");
87 ALOG_ASSERT(hitTestClass, "Could not find android/webkit/WebViewCore$WebKitHitTest");
90 ALOG_ASSERT(gHitTestGlue.m_Init, "Could not find init method on android/webkit/WebViewCore$WebKitHitTest");
117 AndroidHitTestResult::AndroidHitTestResult(WebViewCore* webViewCore, WebCore::HitTestResult& hitTestResult)
118 : m_webViewCore(webViewCore)
138 if (!WebViewCore::nodeIsClickableOrFocusable(node))
206 jclass hitTestClass = env->FindClass("android/webkit/WebViewCore$WebKitHitTest");
207 ALOG_ASSERT(hitTestClass, "Could not find android/webkit/WebViewCore$WebKitHitTest")
    [all...]
  /frameworks/base/core/java/android/webkit/
DeviceMotionAndOrientationManager.java 23 * This could be part of WebViewCore, but have moved it to its own class to
27 private WebViewCore mWebViewCore;
29 public DeviceMotionAndOrientationManager(WebViewCore webViewCore) {
30 mWebViewCore = webViewCore;
34 * Sets that the Page for this WebViewCore should use a mock DeviceOrientation
38 assert WebViewCore.THREAD_NAME.equals(Thread.currentThread().getName());
43 * Set the position for the mock DeviceOrientation service for this WebViewCore.
47 assert WebViewCore.THREAD_NAME.equals(Thread.currentThread().getName());
68 private static native void nativeSetUseMock(WebViewCore webViewCore)
    [all...]
HTML5Audio.java 138 // (i.e. the webviewcore thread here)
188 public HTML5Audio(WebViewCore webViewCore, int nativePtr) {
192 mContext = webViewCore.getContext();
194 webViewCore.getContext().getMainLooper(), webViewCore.getWebViewClassic());
AccessibilityInjectorFallback.java 28 import android.webkit.WebViewCore.EventHub;
77 // WebView navigation axes from WebViewCore.h, plus an additional axis for
90 // WebView navigation directions from WebViewCore.h.
349 WebViewCore webViewCore = mWebView.getWebViewCore();
350 if (webViewCore == null) {
369 webViewCore.sendMessage(EventHub.MODIFY_SELECTION, direction, axis);
SearchBoxImpl.java 21 import android.webkit.WebViewCore.EventHub;
115 private final WebViewCore mWebViewCore;
121 SearchBoxImpl(WebViewCore webViewCore, CallbackProxy callbackProxy) {
123 mWebViewCore = webViewCore;
  /external/webkit/Source/WebKit/android/WebCoreSupport/
DeviceMotionClientAndroid.cpp 29 #include "WebViewCore.h"
40 void DeviceMotionClientAndroid::setWebViewCore(WebViewCore* webViewCore)
42 m_webViewCore = webViewCore;
48 // This will be called by the Page constructor before the WebViewCore
DeviceOrientationClientAndroid.cpp 29 #include "WebViewCore.h"
40 void DeviceOrientationClientAndroid::setWebViewCore(WebViewCore* webViewCore)
42 m_webViewCore = webViewCore;
48 // This will be called by the Page constructor before the WebViewCore
ResourceLoaderAndroid.cpp 33 #include "WebViewCore.h"
44 WebViewCore* webViewCore = WebViewCore::getWebViewCore(clientAndroid->getFrame()->view());
46 return WebUrlLoader::start(client, handle, request, isMainResource, isMainFrame, isSync, webViewCore->webRequestContext());
PlatformBridge.cpp 43 #include "WebViewCore.h"
116 android::WebViewCore* webViewCore = android::WebViewCore::getWebViewCore(frameView);
117 return webViewCore->isPaused();
148 android::WebViewCore* webViewCore = android::WebViewCore::getWebViewCore(frameView);
149 return webViewCore->screenWidth();
154 android::WebViewCore* webViewCore = android::WebViewCore::getWebViewCore(frameView)
    [all...]
EditorClientAndroid.cpp 40 #include "WebViewCore.h"
236 WebViewCore* webViewCore = WebViewCore::getWebViewCore(frame->view());
237 webViewCore->updateTextSizeAndScroll(element);
244 WebViewCore* webViewCore = WebViewCore::getWebViewCore(frame->view());
245 webViewCore->updateTextSizeAndScroll(element);
257 WebViewCore* webViewCore = WebViewCore::getWebViewCore(frame->view())
    [all...]
GeolocationPermissions.h 46 class WebViewCore;
66 // the specified main frame (i.e. tab). The WebViewCore is used to
68 GeolocationPermissions(WebViewCore* webViewCore, WebCore::Frame* mainFrame);
142 WebViewCore* m_webViewCore;
FrameLoaderClientAndroid.cpp 77 #include "WebViewCore.h"
425 WebViewCore* core = WebViewCore::getWebViewCore(m_frame->view());
647 WebViewCore* core = WebViewCore::getWebViewCore(m_frame->view());
847 WebViewCore* webViewCore = WebViewCore::getWebViewCore(m_frame->view());
848 bridge->setScale(webViewCore->scale());
849 bridge->setTextWrapScale(webViewCore->textWrapScale())
    [all...]
GeolocationPermissions.cpp 37 #include "WebViewCore.h"
54 GeolocationPermissions::GeolocationPermissions(WebViewCore* webViewCore, Frame* mainFrame)
55 : m_webViewCore(webViewCore)
108 // simultaneously, the routing in WebViewCore/CallbackProxy ensures that
ChromeClientAndroid.cpp 53 #include "WebViewCore.h"
96 WebViewCore* webViewCore = WebViewCore::getWebViewCore(m_webFrame->page()->mainFrame()->view());
97 if (webViewCore)
98 webViewCore->contentDraw();
166 return android::WebViewCore::getWebViewCore(m_webFrame->page()->mainFrame()->view())->chromeCanTakeFocus(direction);
171 android::WebViewCore::getWebViewCore(m_webFrame->page()->mainFrame()->view())->chromeTakeFocus(direction);
176 android::WebViewCore::getWebViewCore(m_webFrame->page()->mainFrame()->view())->focusNodeChanged(node);
238 android::WebViewCore::getWebViewCore(m_webFrame->page()->mainFrame()->view())->addMessageToConsole(message, lineNumber, (…)
    [all...]
  /external/webkit/Source/WebKit/android/plugins/
ANPEventInterface.cpp 29 #include "WebViewCore.h"
38 WebViewCore* fWVC;
44 has been torn-down. Thus we check that the assicated webviewcore and
49 WebViewCore* core = wrapper->fWVC;
53 if (WebViewCore::isInstance(core) && core->isPlugin(widget)) {
63 WebViewCore* wvc = pluginWidget->webViewCore();
68 wrapper->fWVC = pluginWidget->webViewCore();
ANPSystemInterface.cpp 38 #include "WebViewCore.h"
99 WebCore::Settings* settings = pluginWidget->webViewCore()->mainFrame()->settings();
125 result = pluginWidget->webViewCore()->getPluginClass(pluginView->plugin()->path(),
PluginWidgetAndroid.h 43 class WebViewCore;
51 kept insync with the PluginView, but is also available to WebViewCore
63 android::WebViewCore* webViewCore() const { return m_core; }
68 void init(android::WebViewCore*);
194 android::WebViewCore* m_core;
ANPWindowInterface.cpp 29 #include "WebViewCore.h"
53 pluginWidget->webViewCore()->requestKeyboard(value);
  /external/webkit/Source/WebKit/android/WebCoreSupport/autofill/
WebAutofill.h 51 class WebViewCore;
79 void setWebViewCore(WebViewCore* webViewCore) { mWebViewCore = webViewCore; }
114 WebViewCore* mWebViewCore;

Completed in 1424 milliseconds

1 2