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

1 2

  /frameworks/base/core/java/android/webkit/
MockGeolocation.java 24 private WebViewCore mWebViewCore;
26 public MockGeolocation(WebViewCore webViewCore) {
27 mWebViewCore = webViewCore;
59 private static native void nativeSetUseMock(WebViewCore webViewCore);
60 private static native void nativeSetPosition(WebViewCore webViewCore, double latitude,
62 private static native void nativeSetError(WebViewCore webViewCore, int code, String message)
    [all...]
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 141 // (i.e. the webviewcore thread here)
196 public HTML5Audio(WebViewCore webViewCore, int nativePtr) {
200 mContext = webViewCore.getContext();
202 webViewCore.getContext().getMainLooper(), webViewCore.getWebViewClassic());
AccessibilityInjectorFallback.java 28 import android.webkit.WebViewCore.EventHub;
80 // WebView navigation axes from WebViewCore.h, plus an additional axis for
94 // WebView navigation directions from WebViewCore.h.
350 final WebViewCore webViewCore = mWebView.getWebViewCore();
351 if (webViewCore == null) {
377 webViewCore.sendMessage(EventHub.MODIFY_SELECTION, args);
388 webViewCore.sendMessage(EventHub.MODIFY_SELECTION, args);
  /external/webkit/Source/WebKit/android/jni/
MockGeolocation.cpp 31 #include "WebViewCore.h"
45 WebViewCore* getWebViewCore(JNIEnv* env, jobject webViewCore)
47 ScopedLocalRef<jclass> webViewCoreClass(env, env->FindClass("android/webkit/WebViewCore"));
49 return reinterpret_cast<WebViewCore*>(env->GetIntField(webViewCore, nativeClassField));
52 static void setUseMock(JNIEnv* env, jobject, jobject webViewCore)
54 getWebViewCore(env, webViewCore)->geolocationManager()->setUseMock();
57 static void setPosition(JNIEnv* env, jobject, jobject webViewCore, double latitude, double longitude, double accuracy)
59 getWebViewCore(env, webViewCore)->geolocationManager()->setMockPosition(GeolocationPosition::create(WTF::currentTime()
    [all...]
WebFrameView.h 36 class WebViewCore;
40 WebFrameView(WebCore::FrameView* frameView, WebViewCore* webViewCore);
46 WebViewCore* webViewCore() const {
58 WebViewCore* mWebViewCore;
WebFrameView.cpp 37 #include "WebViewCore.h"
43 WebFrameView::WebFrameView(WebCore::FrameView* frameView, WebViewCore* webViewCore)
46 , 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
GeolocationServiceBridge.cpp 29 #include "WebViewCore.h"
75 GeolocationServiceBridge::GeolocationServiceBridge(Listener* listener, WebViewCore* webViewCore)
80 startJavaImplementation(webViewCore);
169 void GeolocationServiceBridge::startJavaImplementation(WebViewCore* webViewCore)
188 jobject context = webViewCore->getContext();
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...]
  /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());
GeolocationClientAndroid.cpp 29 #include "WebViewCore.h"
84 void GeolocationClientAndroid::setWebViewCore(WebViewCore* webViewCore)
87 m_webViewCore = webViewCore;
PlatformBridge.cpp 43 #include "WebViewCore.h"
149 android::WebViewCore* webViewCore = android::WebViewCore::getWebViewCore(frameView);
150 return webViewCore->screenWidth();
155 android::WebViewCore* webViewCore = android::WebViewCore::getWebViewCore(frameView);
156 return webViewCore->screenHeight();
170 android::WebViewCore* webViewCore = android::WebViewCore::getWebViewCore(frameView)
    [all...]
GeolocationManager.cpp 30 #include "WebViewCore.h"
43 GeolocationManager::GeolocationManager(WebViewCore* webViewCore)
45 , m_webViewCore(webViewCore)
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...]
GeolocationClientImpl.cpp 34 #include <WebViewCore.h>
80 GeolocationClientImpl::GeolocationClientImpl(WebViewCore* webViewCore)
81 : m_webViewCore(webViewCore)
GeolocationPermissions.h 45 class WebViewCore;
66 GeolocationPermissions(WebViewCore* webViewCore);
140 WebViewCore* m_webViewCore;
  /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 44 class WebViewCore;
52 kept insync with the PluginView, but is also available to WebViewCore
64 android::WebViewCore* webViewCore() const { return m_core; }
69 void init(android::WebViewCore*);
195 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 101 milliseconds

1 2