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

  /external/webkit/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) {
WebCoreFrameBridge.h 49 class WebViewCore;
99 void closeWindow(WebViewCore* webViewCore);
WebCoreJniOnLoad.cpp 61 #include "WebViewCore.h"
100 { "WebViewCore", android::register_webviewcore },
215 WebViewCore* webViewCore = new WebViewCore(JSC::Bindings::getJNIEnv(),
218 WebFrameView* webFrameView = new WebFrameView(frameView.get(), webViewCore);
221 Release(webViewCore);
WebCoreFrameBridge.cpp 83 #include "WebViewCore.h"
239 "(Landroid/webkit/WebViewCore;)V");
323 // In WebViewCore.java, we artificially append the filename to the URI so that
799 WebFrame::closeWindow(WebViewCore* webViewCore)
804 assert(webViewCore);
807 webViewCore->getJavaObject().get());
    [all...]
WebViewCore.cpp 29 #include "WebViewCore.h"
153 static SkTDArray<WebViewCore*> gInstanceList;
155 void WebViewCore::addInstance(WebViewCore* inst) {
159 void WebViewCore::removeInstance(WebViewCore* inst) {
167 bool WebViewCore::isInstance(WebViewCore* inst) {
171 jobject WebViewCore::getApplicationContext() {
173 // check to see if there is a valid webviewcore objec
    [all...]
  /external/webkit/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 36 #include "WebViewCore.h"
81 result = pluginWidget->webViewCore()->getPluginClass(pluginView->plugin()->path(),
PluginWidgetAndroid.h 41 class WebViewCore;
49 kept insync with the PluginView, but is also available to WebViewCore
61 android::WebViewCore* webViewCore() const { return m_core; }
66 void init(android::WebViewCore*);
171 android::WebViewCore* m_core;
ANPWindowInterface.cpp 29 #include "WebViewCore.h"
53 pluginWidget->webViewCore()->requestKeyboard(value);
  /external/webkit/WebKit/android/WebCoreSupport/
PlatformBridge.cpp 33 #include "WebViewCore.h"
50 android::WebViewCore* core = android::WebViewCore::getWebViewCore(view);
56 android::WebViewCore* core = android::WebViewCore::getWebViewCore(view);
64 android::WebViewCore* core = android::WebViewCore::getWebViewCore(view);
70 android::WebViewCore* core = android::WebViewCore::getWebViewCore(view);
134 android::WebViewCore* webViewCore = android::WebViewCore::getWebViewCore(frameView)
    [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);
141 WebViewCore* m_webViewCore;
FrameLoaderClientAndroid.cpp 74 #include "WebViewCore.h"
401 WebViewCore::getWebViewCore(m_frame->view())->didFirstLayout();
611 WebViewCore* core = WebViewCore::getWebViewCore(m_frame->view());
801 WebViewCore* webViewCore = WebViewCore::getWebViewCore(m_frame->view());
802 bridge->setScale((int)(webViewCore->scale() * 100));
803 bridge->setScreenWidthScale((int)(webViewCore->screenWidthScale() * 100));
810 WebViewCore* webViewCore = WebViewCore::getWebViewCore(m_frame->view())
    [all...]
EditorClientAndroid.cpp 40 #include "WebViewCore.h"
238 WebViewCore* webViewCore = WebViewCore::getWebViewCore(frame->view());
239 webViewCore->updateTextSelection();
MediaPlayerPrivateAndroid.cpp 34 #include "WebViewCore.h"
127 if (WebViewCore::supportsMimeType(type))
258 m_glue->m_getInstance = env->GetStaticMethodID(clazz, "getInstance", "(Landroid/webkit/WebViewCore;I)Landroid/webkit/HTML5VideoViewProxy;");
290 WebViewCore* webViewCore = WebViewCore::getWebViewCore(frameView);
291 ASSERT(webViewCore);
294 obj = env->CallStaticObjectMethod(clazz, m_glue->m_getInstance, webViewCore->getJavaObject().get(), this);
GeolocationPermissions.cpp 36 #include "WebViewCore.h"
51 GeolocationPermissions::GeolocationPermissions(WebViewCore* webViewCore, Frame* mainFrame)
52 : m_webViewCore(webViewCore)
105 // simultaneously, the routing in WebViewCore/CallbackProxy ensures that
  /frameworks/base/core/java/android/webkit/
HTML5VideoViewProxy.java 594 * @param webViewCore is the WebViewCore that is requesting the proxy.
598 public static HTML5VideoViewProxy getInstance(WebViewCore webViewCore, int nativePtr) {
599 return new HTML5VideoViewProxy(webViewCore.getWebView(), nativePtr);
WebView.java 74 import android.webkit.WebViewCore.EventHub;
75 import android.webkit.WebViewCore.TouchEventData;
385 // A final CallbackProxy shared by WebViewCore and BrowserFrame.
398 private WebViewCore mWebViewCore;
406 // Used by WebViewCore to create child views.
424 * Time of the last time sending touch event to WebViewCore
430 * WebViewCore. This really should be tuned for each type of the devices.
432 * 150ms to do a full cycle in the WebViewCore by processing a touch event,
436 * to WebViewCore queue and the real layout and draw events will be pushed
552 private int mContentWidth; // cache of value from WebViewCore
    [all...]
  /external/webkit/WebCore/plugins/android/
PluginViewAndroid.cpp 72 #include "WebViewCore.h"
286 m_window->webViewCore()->contentInvalidate(rect);
382 *retObject = android::WebViewCore::getApplicationContext();
401 // WebViewCore when NPP_New is called
402 if (m_window && !m_window->webViewCore()) {
403 android::WebViewCore* c = android::WebViewCore::getWebViewCore(this->parent());
501 *retObject = android::WebViewCore::getWebViewCore(parent())->getWebViewJavaObject();
522 *retObject = android::WebViewCore::getWebViewCore(parent())->getContext();

Completed in 245 milliseconds