HomeSort by relevance Sort by last modified time
    Searched refs:webView (Results 26 - 50 of 85) sorted by null

12 3 4

  /external/chromium_org/third_party/libjingle/source/talk/examples/ios/AppRTCDemo/
GAEChannelClient.m 35 @property(nonatomic, strong) UIWebView *webView;
67 - (BOOL)webView:(UIWebView *)webView
  /external/chromium_org/third_party/WebKit/Source/web/tests/
CustomEventTest.cpp 36 #include "WebView.h"
100 WebView* webView = FrameTestHelpers::createWebViewAndLoad(baseURL + path);
101 WebFrameImpl* frame = static_cast<WebFrameImpl*>(webView->mainFrame());
113 webView->close();
  /external/chromium_org/third_party/WebKit/Source/web/
ValidationMessageClientImpl.cpp 44 ValidationMessageClientImpl::ValidationMessageClientImpl(WebViewImpl& webView, WebValidationMessageClient& client)
45 : m_webView(webView)
54 PassOwnPtr<ValidationMessageClientImpl> ValidationMessageClientImpl::create(WebViewImpl& webView, WebValidationMessageClient& client)
56 return adoptPtr(new ValidationMessageClientImpl(webView, client));
BackForwardClientImpl.cpp 45 BackForwardClientImpl::BackForwardClientImpl(WebViewImpl* webView)
46 : m_webView(webView)
StorageNamespaceProxy.cpp 56 WebKit::WebViewClient* webViewClient = static_cast<WebKit::WebViewImpl*>(page->chrome().client()->webView())->client();
WebHelperPluginImpl.cpp 99 virtual void* webView() const OVERRIDE
121 bool WebHelperPluginImpl::initialize(const String& pluginType, const WebDocument& hostDocument, WebViewImpl* webView)
123 ASSERT(webView);
124 m_webView = webView;
IDBFactoryBackendProxy.cpp 119 WebViewImpl* webView = webFrame->viewImpl();
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);
InspectorClientImpl.cpp 52 InspectorClientImpl::InspectorClientImpl(WebViewImpl* webView)
53 : m_inspectedWebView(webView)
DatabaseObserver.cpp 140 WebViewImpl* webView = webFrame->viewImpl();
141 if (!webView)
143 if (webView->permissionClient())
144 return webView->permissionClient()->allowDatabase(webFrame, name, displayName, estimatedSize);
148 WebView* view = webWorker->view();
WebPagePopupImpl.cpp 124 virtual void* webView() const OVERRIDE
173 bool WebPagePopupImpl::initialize(WebViewImpl* webView, PagePopupClient* popupClient, const IntRect&)
175 ASSERT(webView);
177 m_webView = webView;
267 // The main WebView receives key events and forward them to this via handleKeyEvent().
274 // The main WebView receives key events and forward them to this via handleKeyEvent().
StorageAreaProxy.cpp 138 WebKit::WebViewImpl* webView = webFrame->viewImpl();
139 bool result = !webView->permissionClient() || webView->permissionClient()->allowStorage(webFrame, m_storageType == LocalStorage);
  /external/chromium/webkit/glue/
mimetype_unittest.cc 10 #include "third_party/WebKit/Source/WebKit/chromium/public/WebView.h"
30 WebFrame* frame = test_shell_->webView()->mainFrame();
82 test_shell_->webView()->mainFrame()->stopLoading();
iframe_redirect_unittest.cc 14 #include "third_party/WebKit/Source/WebKit/chromium/public/WebView.h"
40 test_shell_->webView()->findFrameByName(WebString::fromUTF8("ifr"));
resource_fetcher_unittest.cc 12 #include "third_party/WebKit/Source/WebKit/chromium/public/WebView.h"
101 WebFrame* frame = test_shell_->webView()->mainFrame();
133 WebFrame* frame = test_shell_->webView()->mainFrame();
154 WebFrame* frame = test_shell_->webView()->mainFrame();
195 WebFrame* frame = test_shell_->webView()->mainFrame();
dom_serializer_unittest.cc 26 #include "third_party/WebKit/Source/WebKit/chromium/public/WebView.h"
45 using WebKit::WebView;
51 WebFrame* FindSubFrameByURL(WebView* web_view, const GURL& url) {
148 test_shell_->webView()->mainFrame()->loadHTMLString(contents, base_url);
156 test_shell_->webView()->mainFrame();
172 WebFrame* web_frame = FindSubFrameByURL(test_shell_->webView(),
294 WebFrame* web_frame = FindSubFrameByURL(test_shell_->webView(), file_url);
307 web_frame = test_shell_->webView()->mainFrame();
323 WebFrame* web_frame = FindSubFrameByURL(test_shell_->webView(), file_url);
336 web_frame = test_shell_->webView()->mainFrame()
    [all...]
webframe_unittest.cc 12 #include "third_party/WebKit/Source/WebKit/chromium/public/WebView.h"
17 using WebKit::WebView;
23 WebView* view = test_shell_->webView();
64 WebView* view = test_shell_->webView();
context_menu_unittest.cc 15 #include "third_party/WebKit/Source/WebKit/chromium/public/WebView.h"
22 using WebKit::WebView;
60 WebView* webview = test_shell_->webView(); local
61 webview->handleInputEvent(mouse_event);
65 webview->handleInputEvent(mouse_event);
  /external/chromium_org/third_party/WebKit/Source/testing/runner/
AccessibilityControllerChromium.h 40 class WebView;
65 void setWebView(WebKit::WebView* webView) { m_webView = webView; }
91 WebKit::WebView* m_webView;
WebTestInterfaces.cpp 54 void WebTestInterfaces::setWebView(WebView* webView, WebTestProxyBase* proxy)
56 m_interfaces->setWebView(webView, proxy);
TestInterfaces.cpp 44 #include "public/web/WebView.h"
76 // m_gamepadController doesn't depend on WebView.
87 void TestInterfaces::setWebView(WebView* webView, WebTestProxyBase* proxy)
90 m_accessibilityController->setWebView(webView);
91 m_eventSender->setWebView(webView);
92 // m_gamepadController doesn't depend on WebView.
93 m_textInputController->setWebView(webView);
94 m_testRunner->setWebView(webView, proxy);
EventSender.h 49 class WebView;
63 void setWebView(WebKit::WebView* webView) { m_webView = webView; }
149 WebKit::WebView* webview() { return m_webView; } function in class:WebTestRunner::EventSender
186 WebKit::WebView* m_webView;
  /frameworks/base/core/java/android/webkit/
JsDialogHelper.java 35 * different WebView implementations.
72 public boolean invokeCallback(WebChromeClient client, WebView webView) {
75 return client.onJsAlert(webView, mUrl, mMessage, mResult);
77 return client.onJsConfirm(webView, mUrl, mMessage, mResult);
79 return client.onJsBeforeUnload(webView, mUrl, mMessage, mResult);
81 return client.onJsPrompt(webView, mUrl, mMessage, mDefaultValue, mResult);
89 Log.w(TAG, "Cannot create a dialog, the WebView context is not an Activity");
FindActionModeCallback.java 40 View.OnClickListener, WebView.FindListener {
44 private WebView mWebView;
90 * Set the WebView to search. Must be non null.
92 public void setWebView(WebView webView) {
93 if (null == webView) {
94 throw new AssertionError("WebView supplied to "
97 mWebView = webView;
117 "No WebView for FindActionModeCallback::findNext");
138 "No WebView for FindActionModeCallback::findAll")
    [all...]
  /external/chromium_org/chrome/browser/resources/file_manager/js/
share_client.js 8 * @param {WebView} webView Web View tag.
13 function ShareClient(webView, url, observer) {
14 this.webView_ = webView;
  /frameworks/webview/chromium/java/com/android/webview/chromium/
WebViewChromiumFactoryProvider.java 17 package com.android.webview.chromium;
29 import android.webkit.WebView;
58 private static final String COMMAND_LINE_FILE = "/data/local/tmp/webview-command-line";
112 // startup by using the (thread-safe) CookieManager rather than creating a WebView.
156 if (!cl.hasSwitch("disable-webview-gl-mode")) {
157 cl.appendSwitch("testing-webview-gl-mode");
162 cl.appendSwitch("enable-webview-classic-workarounds");
165 // We don't need to extract any paks because for WebView, they are
172 throw new RuntimeException("Error initializing WebView library", e);
182 "/system/framework/webview/paks")
    [all...]

Completed in 463 milliseconds

12 3 4