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

  /cts/tests/tests/webkit/src/android/webkit/cts/
WebViewClientTest.java 33 import android.webkit.WebViewClient;
36 @TestTargetClass(android.webkit.WebViewClient.class)
70 final MockWebViewClient webViewClient = new MockWebViewClient();
71 assertFalse(webViewClient.shouldOverrideUrlLoading(mWebView, null));
92 final MockWebViewClient webViewClient = new MockWebViewClient();
93 mWebView.setWebViewClient(webViewClient);
97 assertFalse(webViewClient.hasOnPageStartedCalled());
98 assertFalse(webViewClient.hasOnLoadResourceCalled());
99 assertFalse(webViewClient.hasOnPageFinishedCalled());
104 return webViewClient.hasOnPageStartedCalled()
    [all...]
WebViewTest.java 61 import android.webkit.WebViewClient;
440 // handle loading a new URL. We set a WebViewClient as
441 // WebViewClient.shouldOverrideUrlLoading() returns false, so
443 mWebView.setWebViewClient(new WebViewClient());
450 // WebViewClient.shouldOverrideUrlLoading() to be made.
    [all...]
  /external/webkit/Source/WebKit/chromium/src/
StorageNamespaceProxy.cpp 40 #include "WebViewClient.h"
52 WebKit::WebViewClient* webViewClient = static_cast<WebKit::WebViewImpl*>(page->chrome()->client()->webView())->client();
53 return adoptRef(new StorageNamespaceProxy(webViewClient->createSessionStorageNamespace(quota), SessionStorage));
70 // Some embedders hook into WebViewClient::createView to make the copy of
ExternalPopupMenu.cpp 42 #include "WebViewClient.h"
49 WebViewClient* webViewClient)
51 , m_webViewClient(webViewClient)
  /frameworks/base/tests/BrowserPowerTest/src/com/android/browserpowertest/
PowerTestActivity.java 29 import android.webkit.WebViewClient;
46 private SimpleWebViewClient webViewClient;
78 webViewClient = new SimpleWebViewClient();
80 webView.setWebViewClient(webViewClient);
194 return webViewClient.getPageErrorFlag();
197 class SimpleWebViewClient extends WebViewClient {
  /frameworks/base/tests/DumpRenderTree/src/com/android/dumprendertree/
ReliabilityTestActivity.java 34 import android.webkit.WebViewClient;
53 private SimpleWebViewClient webViewClient;
82 webViewClient = new SimpleWebViewClient();
84 webView.setWebViewClient(webViewClient);
197 class SimpleWebViewClient extends WebViewClient {

Completed in 160 milliseconds