| /external/chromium/webkit/glue/ |
| dom_operations_unittest.cc | 11 #include "third_party/WebKit/Source/WebKit/chromium/public/WebView.h" 63 test_shell_->webView(), file_url, &result, savable_schemes));
|
| cpp_bound_class_unittest.cc | 16 #include "third_party/WebKit/Source/WebKit/chromium/public/WebView.h" 92 webframe_ = test_shell_->webView()->mainFrame();
|
| /external/chromium_org/chrome/renderer/resources/extensions/ |
| web_view_experimental.js | 6 // experimental APIs) for <webview> tag. 9 // We want to control the permission API feature in <webview> separately from 10 // the <webview> feature itself. <webview> is available in stable channel, but 14 var createEvent = require('webView').CreateEvent; 18 var WebView = require('webView').WebView; 23 customHandler: function(webview, event, webviewEvent) { 24 webview.maybeSetupExtDialogEvent_(event, webviewEvent) [all...] |
| /external/chromium_org/third_party/WebKit/Source/web/ |
| EditorClientImpl.h | 51 EditorClientImpl(WebViewImpl* webView);
|
| ChromeClientImpl.cpp | 132 ChromeClientImpl::ChromeClientImpl(WebViewImpl* webView) 133 : m_webView(webView) 139 , m_pagePopupDriver(webView) 147 void* ChromeClientImpl::webView() const 717 // We only notify when the WebView has to handle the popup, as when 719 // transparent to the WebView. [all...] |
| ChromeClientImpl.h | 65 // Handles window-level notifications from WebCore on behalf of a WebView. 68 explicit ChromeClientImpl(WebViewImpl* webView); 71 virtual void* webView() const;
|
| WebMediaPlayerClientImpl.cpp | 159 WebViewImpl* webView = static_cast<WebViewImpl*>(frame->view()); 160 m_helperPlugin = webView->createHelperPlugin(pluginType, frame->document()); 187 WebViewImpl* webView = static_cast<WebViewImpl*>(frame->view()); 188 webView->closeHelperPluginSoon(m_helperPlugin.release());
|
| WebFrameImpl.cpp | 36 // WebView (for the toplevel frame only) 626 WebView* WebFrameImpl::view() const [all...] |
| WebDevToolsAgentImpl.cpp | 135 WebView::willEnterModalLoop(); 141 WebView::didExitModalLoop(); 192 DeviceMetricsSupport(WebViewImpl* webView) 193 : m_webView(webView)
|
| /packages/apps/Browser/src/com/android/browser/ |
| UrlHandler.java | 30 import android.webkit.WebView; 61 boolean shouldOverrideUrlLoading(Tab tab, WebView view, String url) { 73 Uri.parse(WebView.SCHEME_TEL + 241 private WebView mWebView; 243 public RLZTask(Tab tab, Uri uri, WebView webView) { 246 mWebView = webView;
|
| Controller.java | 80 import android.webkit.WebView; 323 WebView webView = t.getWebView(); 327 webView.setInitialScale(scale); 400 public void onSetWebView(Tab tab, WebView view) { 407 WebView mainView = tab.getWebView(); 408 WebView subView = mFactory.createWebView((mainView == null) 488 WebView view = (WebView) focusNodeMap.get("webview"); 1269 final WebView webview = (WebView) v; local [all...] |
| BaseUi.java | 48 import android.webkit.WebView; 273 WebView web = mActiveTab.getWebView(); 304 WebView web = mActiveTab != null ? mActiveTab.getWebView() : null; 343 WebView mainView = tab.getWebView(); 344 // Attach the WebView to the container and then attach the 367 // Remove the container that contains the main WebView. 368 WebView mainView = tab.getWebView(); 374 // WebView from the container. This will trigger a focus change 375 // needed by WebView. 389 public void onSetWebView(Tab tab, WebView webView) [all...] |
| /external/chromium_org/third_party/WebKit/Source/core/page/ |
| ChromeClient.h | 146 virtual void* webView() const = 0;
|
| /external/chromium_org/chrome/browser/resources/file_manager/js/ |
| share_dialog.js | 36 * @param {WebView} webView Web View element to be wrapped. 39 ShareDialog.WebViewAuthorizer = function(urlPattern, webView) { 41 this.webView_ = webView; 119 this.webViewWrapper_.className = 'share-dialog-webview-wrapper'; 223 // TODO(mtomasz): Move to initDom_() once and reuse <webview> once it gets 226 this.webViewWrapper_, 'share-dialog-webview', 'webview');
|
| /external/robolectric/src/test/java/com/xtremelabs/robolectric/res/ |
| ViewLoaderTest.java | 9 import android.webkit.WebView; 127 WebView webView = (WebView) view.findViewById(R.id.web_view); 129 webView.loadUrl("www.example.com"); 131 assertThat(shadowOf(webView).getLastLoadedUrl(), equalTo("www.example.com"));
|
| /external/chromium_org/third_party/WebKit/Source/testing/runner/ |
| WebTestProxy.cpp | 69 #include "public/web/WebView.h" 499 WebView* WebTestProxyBase::webView() 502 // TestRunner does not support popup widgets. So m_webWidget is always a WebView. 503 return static_cast<WebView*>(m_webWidget); 544 WebFrame* frame = webView()->mainFrame(); 590 WebRect wr = webView()->mainFrame()->selectionBoundsRect(); 617 float deviceScaleFactor = webView()->deviceScaleFactor(); 665 WebFrame* webFrame = webView()->mainFrame(); 690 float deviceScaleFactor = webView()->deviceScaleFactor() [all...] |
| TestRunner.cpp | 63 #include "public/web/WebView.h" 351 void TestRunner::setWebView(WebView* webView, WebTestProxyBase* proxy) 353 m_webView = webView; 731 TestRunner::TestPageOverlay::TestPageOverlay(WebKit::WebView* webView) : m_webView(webView) 808 bool run(WebTestDelegate* delegate, WebView*) 834 bool run(WebTestDelegate* delegate, WebView*) 850 bool run(WebTestDelegate*, WebView* webView [all...] |
| /cts/tests/src/android/webkit/cts/ |
| WebViewOnUiThread.java | 38 import android.webkit.WebView.HitTestResult; 39 import android.webkit.WebView.PictureListener; 40 import android.webkit.WebView; 50 * Many tests need to run WebView code in the UI thread. This class 51 * wraps a WebView so that calls are ensured to arrive on the UI thread. 85 * The WebView that calls will be made on. 87 private WebView mWebView; 90 * Initializes the webView with a WebViewClient, WebChromeClient, 97 * @param webView The webView that the methods should call [all...] |
| /external/chromium_org/third_party/WebKit/Source/core/loader/ |
| EmptyClients.h | 74 virtual void* webView() const OVERRIDE { return 0; }
|
| /frameworks/webview/chromium/java/com/android/webview/chromium/ |
| WebViewContentsClientAdapter.java | 17 package com.android.webview.chromium; 47 import android.webkit.WebView; 68 * instance. A WebViewChromium is a WebView implementation provider (that is 69 * android.webkit.WebView delegates all functionality to it) and has exactly 74 * WebView as an argument. This means that we either need to pass the 77 * allow the source WebView to be injected by ContentViewClientAdapter. We 81 // TAG is chosen for consistency with classic webview tracing. 85 // The WebView instance that this adapter is serving. 86 private final WebView mWebView; 87 // The WebViewClient instance that was passed to WebView.setWebViewClient() [all...] |
| /external/chromium_org/android_webview/renderer/ |
| print_web_view_helper.cc | 39 #include "third_party/WebKit/public/web/WebView.h" 421 WebKit::WebView* FrameReference::view() { 448 WebKit::WebView* web_view = WebKit::WebView::create(NULL); 620 WebKit::WebView* web_view = frame_.view(); 632 WebKit::WebView* web_view = frame_.view(); 657 // Create a new WebView with the same settings as the current display one. 664 WebKit::WebView* web_view = WebKit::WebView::create(this); 678 // Don't call callback here, because it can delete |this| and WebView that i [all...] |
| /external/chromium_org/chrome/renderer/printing/ |
| print_web_view_helper.cc | 44 #include "third_party/WebKit/public/web/WebView.h" 430 WebKit::WebView* FrameReference::view() { 455 WebKit::WebView* web_view = WebKit::WebView::create(NULL); 627 WebKit::WebView* web_view = frame_.view(); 639 WebKit::WebView* web_view = frame_.view(); 664 // Create a new WebView with the same settings as the current display one. 671 WebKit::WebView* web_view = WebKit::WebView::create(this); 685 // Don't call callback here, because it can delete |this| and WebView that i [all...] |
| /external/chromium_org/android_webview/javatests/src/org/chromium/android_webview/test/ |
| AwSettingsTest.java | 503 loadUrlSync(UrlUtils.getTestFileUrl("webview/localStorage.html")); 545 loadUrlSync(UrlUtils.getTestFileUrl("webview/database_access.html")); 559 mIframeContainerUrl = UrlUtils.getTestFileUrl("webview/iframe_access.html"); 560 mIframeUrl = UrlUtils.getTestFileUrl("webview/hello_world.html"); 608 mIframeContainerUrl = UrlUtils.getTestFileUrl("webview/iframe_access.html"); 609 mIframeUrl = UrlUtils.getTestFileUrl("webview/hello_world.html"); 655 mXhrContainerUrl = UrlUtils.getTestFileUrl("webview/xhr_access.html"); 726 String fileUrl = UrlUtils.getTestFileUrl("webview/hello_world.html?id=" + mIndex); [all...] |
| /cts/tests/tests/webkit/src/android/webkit/cts/ |
| WebViewTest.java | 66 import android.webkit.WebView; 67 import android.webkit.WebView.HitTestResult; 68 import android.webkit.WebView.PictureListener; 112 private WebView mWebView; 172 new WebView(getActivity()); 173 new WebView(getActivity(), null); 174 new WebView(getActivity(), null, 0); 179 new WebView(getActivity()); 192 WebView.findAddress("455 LARKSPUR DRIVE CALIFORNIA SPRINGS CALIFORNIA 92826")); 194 assertNull(WebView.findAddress("This is not an address: no town, no state, no zip.")) [all...] |
| /external/chromium_org/third_party/WebKit/public/testing/ |
| WebTestProxy.h | 84 class WebView; 228 WebKit::WebView* webView(); 370 virtual WebKit::WebView* createView(WebKit::WebFrame* creator, const WebKit::WebURLRequest& request, const WebKit::WebWindowFeatures& features, const WebKit::WebString& frameName, WebKit::WebNavigationPolicy policy)
|