HomeSort by relevance Sort by last modified time
    Searched refs:webViewCore (Results 1 - 25 of 30) 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 {
60 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
WebCoreJniOnLoad.cpp 64 #include "WebViewCore.h"
113 { "WebViewCore", android::registerWebViewCore },
238 WebViewCore* webViewCore = new WebViewCore(JSC::Bindings::getJNIEnv(),
241 WebFrameView* webFrameView = new WebFrameView(frameView.get(), webViewCore);
244 Release(webViewCore);
253 deviceMotion->setWebViewCore(webViewCore);
254 deviceOrientation->setWebViewCore(webViewCore);
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 { "nativeUseMock", "(Landroid/webkit/WebViewCore;)V", (void*) useMock },
155 { "nativeOnMotionChange", "(Landroid/webkit/WebViewCore;ZDZDZDD)V", (void*) onMotionChange },
156 { "nativeSetMockOrientation", "(Landroid/webkit/WebViewCore;ZDZDZD)V", (void*) setMockOrientation }
    [all...]
WebCoreFrameBridge.h 54 class WebViewCore;
110 void closeWindow(WebViewCore* webViewCore);
  /frameworks/base/core/java/android/webkit/
DeviceMotionAndOrientationManager.java 23 * This could be part of WebViewCore, but have moved it to its own class to
28 private WebViewCore mWebViewCore;
30 public DeviceMotionAndOrientationManager(WebViewCore webViewCore) {
31 mWebViewCore = webViewCore;
35 * Sets whether the Page for this WebViewCore should use a mock DeviceOrientation
39 assert WebViewCore.THREAD_NAME.equals(Thread.currentThread().getName());
44 * Set the position for the mock DeviceOrientation service for this WebViewCore.
48 assert WebViewCore.THREAD_NAME.equals(Thread.currentThread().getName());
69 private static native void nativeUseMock(WebViewCore webViewCore)
    [all...]
HTML5Audio.java 136 // (i.e. the webviewcore thread here)
181 public HTML5Audio(WebViewCore webViewCore, int nativePtr) {
185 mContext = webViewCore.getContext();
187 webViewCore.getContext().getMainLooper(), webViewCore.getWebView());
AccessibilityInjector.java 26 import android.webkit.WebViewCore.EventHub;
264 WebViewCore webViewCore = mWebView.getWebViewCore();
265 if (webViewCore == null) {
283 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
PlatformBridge.cpp 41 #include "WebViewCore.h"
134 android::WebViewCore* webViewCore = android::WebViewCore::getWebViewCore(frameView);
135 return webViewCore->isPaused();
166 android::WebViewCore* webViewCore = android::WebViewCore::getWebViewCore(frameView);
167 return webViewCore->screenWidth();
172 android::WebViewCore* webViewCore = android::WebViewCore::getWebViewCore(frameView)
    [all...]
ResourceLoaderAndroid.cpp 34 #include "WebViewCore.h"
46 WebViewCore* webViewCore = WebViewCore::getWebViewCore(clientAndroid->getFrame()->view());
48 return WebUrlLoader::start(client, handle, request, isMainResource, isMainFrame, isSync, webViewCore->webRequestContext());
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 78 #include "WebViewCore.h"
426 WebViewCore::getWebViewCore(m_frame->view())->didFirstLayout();
646 WebViewCore* core = WebViewCore::getWebViewCore(m_frame->view());
846 WebViewCore* webViewCore = WebViewCore::getWebViewCore(m_frame->view());
847 bridge->setScale(webViewCore->scale());
848 bridge->setTextWrapScale(webViewCore->textWrapScale());
855 WebViewCore* webViewCore = WebViewCore::getWebViewCore(m_frame->view())
    [all...]
EditorClientAndroid.cpp 40 #include "WebViewCore.h"
243 WebViewCore* webViewCore = WebViewCore::getWebViewCore(frame->view());
244 webViewCore->updateTextSelection();
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->layersDraw();
169 android::WebViewCore::getWebViewCore(m_webFrame->page()->mainFrame()->view())->focusNodeChanged(node);
231 android::WebViewCore::getWebViewCore(m_webFrame->page()->mainFrame()->view())->addMessageToConsole(message, lineNumber, sourceID, msgLevel);
236 android::WebViewCore::getWebViewCore(m_webFrame->page()->mainFrame()->view())->formDidBlur(node);
242 return android::WebViewCore::getWebViewCore(frame->view())->jsUnload(url, message)
    [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 324 milliseconds

1 2