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

1 2 3

  /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;
AndroidHitTestResult.h 39 class WebViewCore;
44 AndroidHitTestResult(WebViewCore*, WebCore::HitTestResult&);
59 WebViewCore* m_webViewCore;
DeviceMotionClientImpl.h 40 class WebViewCore;
44 DeviceMotionClientImpl(WebViewCore*);
62 WebViewCore* m_webViewCore;
DeviceOrientationClientImpl.h 40 class WebViewCore;
44 DeviceOrientationClientImpl(WebViewCore*);
62 WebViewCore* m_webViewCore;
DeviceMotionAndOrientationManager.h 39 class WebViewCore;
44 // owned by WebViewCore and exists to keep cruft out of that class.
47 DeviceMotionAndOrientationManager(WebViewCore*);
61 WebViewCore* m_webViewCore;
WebViewCore.cpp 29 #include "WebViewCore.h"
246 static SkTDArray<WebViewCore*> gInstanceList;
248 void WebViewCore::addInstance(WebViewCore* inst) {
252 void WebViewCore::removeInstance(WebViewCore* inst) {
260 bool WebViewCore::isInstance(WebViewCore* inst) {
264 jobject WebViewCore::getApplicationContext() {
266 // check to see if there is a valid webviewcore objec
    [all...]
WebFrameView.cpp 38 #include "WebViewCore.h"
44 WebFrameView::WebFrameView(WebCore::FrameView* frameView, WebViewCore* webViewCore)
47 , mWebViewCore(webViewCore) {
  /external/webkit/Source/WebKit/android/WebCoreSupport/
DeviceMotionClientAndroid.h 37 class WebViewCore;
40 // the real or mock impl, which is owned by the WebViewCore.
45 void setWebViewCore(WebViewCore*);
57 WebViewCore* m_webViewCore;
59 // Lazily obtained cache of the client owned by the WebViewCore.
DeviceOrientationClientAndroid.h 37 class WebViewCore;
40 // the real or mock impl, which is owned by the WebViewCore.
45 void setWebViewCore(WebViewCore*);
57 WebViewCore* m_webViewCore;
59 // Lazily obtained cache of the client owned by 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...]
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...]
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;
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
  /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...]
ViewStateSerializer.java 20 import android.webkit.WebViewCore.DrawData;
63 final WebViewCore.DrawData draw = new WebViewCore.DrawData();
64 draw.mViewState = new WebViewCore.ViewState();
DeviceMotionService.java 75 assert WebViewCore.THREAD_NAME.equals(Thread.currentThread().getName());
84 assert WebViewCore.THREAD_NAME.equals(Thread.currentThread().getName());
130 assert WebViewCore.THREAD_NAME.equals(Thread.currentThread().getName());
159 assert WebViewCore.THREAD_NAME.equals(Thread.currentThread().getName());
176 assert WebViewCore.THREAD_NAME.equals(Thread.currentThread().getName());
DeviceOrientationService.java 78 assert WebViewCore.THREAD_NAME.equals(Thread.currentThread().getName());
86 assert WebViewCore.THREAD_NAME.equals(Thread.currentThread().getName());
137 assert WebViewCore.THREAD_NAME.equals(Thread.currentThread().getName());
169 assert WebViewCore.THREAD_NAME.equals(Thread.currentThread().getName());
190 assert WebViewCore.THREAD_NAME.equals(Thread.currentThread().getName());
223 assert WebViewCore.THREAD_NAME.equals(Thread.currentThread().getName());
  /external/webkit/Source/WebCore/platform/android/
ScrollViewAndroid.cpp 37 #include "WebViewCore.h"
109 android::WebViewCore::getWebViewCore(this)->setScrollbarModes(m_horizontalScrollbarMode, m_verticalScrollbarMode);
123 android::WebViewCore::getWebViewCore(this)->contentInvalidate(offsetRect);
131 android::WebViewCore* core = android::WebViewCore::getWebViewCore(this);
132 if (!core) // SVG does not instantiate webviewcore
143 return android::WebViewCore::getWebViewCore(this)->drawIsPaused();
PopupMenuAndroid.cpp 31 #include "WebViewCore.h"
37 PopupReply(const IntRect& rect, android::WebViewCore* view, ListPopupMenuClient* client)
86 android::WebViewCore* m_viewImpl;
126 android::WebViewCore* viewImpl = android::WebViewCore::getWebViewCore(frameView);
  /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();
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;
  /frameworks/base/core/tests/coretests/src/android/webkit/
ZoomManagerTest.java 65 WebViewCore.ViewState minViewState = new WebViewCore.ViewState();
76 WebViewCore.ViewState minViewState = new WebViewCore.ViewState();
87 WebViewCore.ViewState maxViewState = new WebViewCore.ViewState();
98 WebViewCore.ViewState maxViewState = new WebViewCore.ViewState();
  /external/webkit/Source/WebKit/android/WebCoreSupport/autofill/
WebAutofill.h 51 class WebViewCore;
79 void setWebViewCore(WebViewCore* webViewCore) { mWebViewCore = webViewCore; }
114 WebViewCore* mWebViewCore;

Completed in 266 milliseconds

1 2 3