Searched defs:webView (Results 1 - 25 of 39) sorted by relevance

12

/external/chromium_org/third_party/WebKit/Source/testing/runner/
H A DTextInputController.h50 void setWebView(WebKit::WebView* webView) { m_webView = webView; } argument
H A DAccessibilityControllerChromium.h65 void setWebView(WebKit::WebView* webView) { m_webView = webView; } argument
H A DTestInterfaces.cpp87 void TestInterfaces::setWebView(WebView* webView, WebTestProxyBase* proxy) argument
90 m_accessibilityController->setWebView(webView);
91 m_eventSender->setWebView(webView);
93 m_textInputController->setWebView(webView);
94 m_testRunner->setWebView(webView, proxy);
H A DWebTestInterfaces.cpp54 void WebTestInterfaces::setWebView(WebView* webView, WebTestProxyBase* proxy) argument
56 m_interfaces->setWebView(webView, proxy);
H A DEventSender.h63 void setWebView(WebKit::WebView* webView) { m_webView = webView; } argument
/external/chromium_org/third_party/WebKit/Source/web/
H A DContextMenuClientImpl.h43 ContextMenuClientImpl(WebViewImpl* webView) : m_webView(webView) {} argument
H A DDragClientImpl.h50 DragClientImpl(WebViewImpl* webView) : m_webView(webView) { } argument
H A DMIDIClientImpl.cpp45 MIDIClientImpl::MIDIClientImpl(WebViewImpl* webView) argument
46 : m_client(webView->client() ? webView->client()->webMIDIClient() : 0)
H A DUserMediaClientImpl.cpp45 UserMediaClientImpl::UserMediaClientImpl(WebViewImpl* webView) argument
46 : m_client(webView->client() ? webView->client()->userMediaClient() : 0)
H A DGraphicsLayerFactoryChromium.cpp36 GraphicsLayerFactoryChromium::GraphicsLayerFactoryChromium(WebViewImpl* webView) argument
37 : m_webView(webView)
H A DBackForwardClientImpl.cpp45 BackForwardClientImpl::BackForwardClientImpl(WebViewImpl* webView) argument
46 : m_webView(webView)
H A DLocalFileSystemClient.cpp63 WebKit::WebViewImpl* webView = webFrame->viewImpl(); local
65 return !webView->permissionClient() || webView->permissionClient()->allowFileSystem(webFrame);
H A DValidationMessageClientImpl.cpp44 ValidationMessageClientImpl::ValidationMessageClientImpl(WebViewImpl& webView, WebValidationMessageClient& client) argument
45 : m_webView(webView)
54 PassOwnPtr<ValidationMessageClientImpl> ValidationMessageClientImpl::create(WebViewImpl& webView, WebValidationMessageClient& client) argument
56 return adoptPtr(new ValidationMessageClientImpl(webView, client));
H A DIDBFactoryBackendProxy.cpp119 WebViewImpl* webView = webFrame->viewImpl(); local
120 // FIXME: webView->permissionClient() returns 0 in test_shell and content_shell http://crbug.com/137269
121 allowed = !webView->permissionClient() || webView->permissionClient()->allowIndexedDB(webFrame, name, origin);
H A DInspectorClientImpl.cpp52 InspectorClientImpl::InspectorClientImpl(WebViewImpl* webView) argument
53 : m_inspectedWebView(webView)
H A DStorageAreaProxy.cpp138 WebKit::WebViewImpl* webView = webFrame->viewImpl(); local
139 bool result = !webView->permissionClient() || webView->permissionClient()->allowStorage(webFrame, m_storageType == LocalStorage);
H A DWebHelperPluginImpl.cpp99 virtual void* webView() const OVERRIDE
121 bool WebHelperPluginImpl::initialize(const String& pluginType, const WebDocument& hostDocument, WebViewImpl* webView) argument
123 ASSERT(webView);
124 m_webView = webView;
/external/chromium_org/third_party/WebKit/Source/web/tests/
H A DRenderTableCellTest.cpp50 static WebView* webView; local
52 if (webView)
53 return static_cast<WebFrameImpl*>(webView->mainFrame())->frame();
55 webView = FrameTestHelpers::createWebViewAndLoad("about:blank");
56 webView->setFocus(true);
57 return static_cast<WebFrameImpl*>(webView->mainFrame())->frame();
H A DRenderTableRowTest.cpp50 static WebView* webView; local
52 if (webView)
53 return static_cast<WebFrameImpl*>(webView->mainFrame())->frame();
55 webView = FrameTestHelpers::createWebViewAndLoad("about:blank");
56 webView->setFocus(true);
57 return static_cast<WebFrameImpl*>(webView->mainFrame())->frame();
H A DCustomEventTest.cpp100 WebView* webView = FrameTestHelpers::createWebViewAndLoad(baseURL + path); local
101 WebFrameImpl* frame = static_cast<WebFrameImpl*>(webView->mainFrame());
113 webView->close();
H A DFrameTestHelpers.cpp83 WebView* webView = WebView::create(webViewClient); local
84 webView->settings()->setJavaScriptEnabled(enableJavascript);
85 webView->settings()->setDeviceSupportsMouse(false);
86 webView->settings()->setForceCompositingMode(true);
87 webView->initializeMainFrame(webFrameClient);
89 return webView;
94 WebView* webView = createWebView(enableJavascript, webFrameClient, webViewClient); local
96 loadFrame(webView->mainFrame(), url);
99 return webView;
H A DProgrammaticScrollTest.cpp85 WebView* webView = FrameTestHelpers::createWebViewAndLoad(m_baseURL + "short_scroll.html", false, 0, &client); local
86 webView->resize(WebSize(1000, 1000));
87 webView->layout();
89 WebViewImpl* webViewImpl = static_cast<WebViewImpl*>(webView);
96 webView->close();
104 WebView* webView = FrameTestHelpers::createWebViewAndLoad(m_baseURL + "long_scroll.html", true, 0, &client); local
105 webView->resize(WebSize(1000, 1000));
106 webView->layout();
108 WebViewImpl* webViewImpl = static_cast<WebViewImpl*>(webView);
132 webView
140 WebView* webView = FrameTestHelpers::createWebViewAndLoad(m_baseURL + "long_scroll.html", true, 0, &client); local
170 WebView* webView = FrameTestHelpers::createWebViewAndLoad(m_baseURL + "long_scroll.html", true, 0, &client); local
201 WebView* webView = FrameTestHelpers::createWebViewAndLoad(m_baseURL + "long_scroll.html", true, 0, &client); local
[all...]
H A DWebPluginContainerTest.cpp96 WebPluginContainer* getWebPluginContainer(WebView* webView, const WebString& id) argument
98 WebElement element = webView->mainFrame()->document().getElementById(id);
105 WebView* webView = FrameTestHelpers::createWebViewAndLoad(m_baseURL + "plugin_container.html", true, new TestPluginWebFrameClient()); local
106 ASSERT(webView);
107 webView->settings()->setPluginsEnabled(true);
108 webView->resize(WebSize(300, 300));
109 webView->layout();
112 WebPluginContainer* pluginContainerOne = getWebPluginContainer(webView, WebString::fromUTF8("translated-plugin"));
121 WebPluginContainer* pluginContainerTwo = getWebPluginContainer(webView, WebString::fromUTF8("rotated-plugin"));
130 webView
136 WebView* webView = FrameTestHelpers::createWebViewAndLoad(m_baseURL + "plugin_container.html", true, new TestPluginWebFrameClient()); local
168 WebView* webView = FrameTestHelpers::createWebViewAndLoad(m_baseURL + "plugin_container.html", true, new TestPluginWebFrameClient()); local
[all...]
/external/chromium_org/third_party/libjingle/source/talk/examples/android/src/org/appspot/apprtc/
H A DGAEChannelClient.java49 private WebView webView; field in class:GAEChannelClient
69 webView = new WebView(activity);
70 webView.getSettings().setJavaScriptEnabled(true);
71 webView.setWebChromeClient(new WebChromeClient() { // Purely for debugging.
78 webView.setWebViewClient(new WebViewClient() { // Purely for debugging.
88 webView.addJavascriptInterface(
90 webView.loadUrl("file:///android_asset/channel.html");
95 if (webView == null) {
99 webView.removeJavascriptInterface("androidMessageHandler");
100 webView
[all...]
/external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
H A DWebViewTest.java24 private WebView webView; field in class:WebViewTest
29 webView = new WebView(null);
30 shadowWebView = Robolectric.shadowOf(webView);
35 webView.loadUrl("http://example.com");
36 assertThat(shadowOf(webView).getLastLoadedUrl(), equalTo("http://example.com"));
41 webView.loadData("<html><body><h1>Hi</h1></body></html>", "text/html", "utf-8");
42 ShadowWebView.LoadData lastLoadData = shadowOf(webView).getLastLoadData();
50 webView.loadDataWithBaseURL("base/url", "<html><body><h1>Hi</h1></body></html>", "text/html", "utf-8", "history/url");
51 ShadowWebView.LoadDataWithBaseURL lastLoadData = shadowOf(webView).getLastLoadDataWithBaseURL();
61 WebSettings webSettings = webView
[all...]

Completed in 275 milliseconds

12