/external/chromium_org/content/renderer/ |
savable_resources.h | 18 class WebView; 54 // Get all savable resource links from current webview, include main frame 59 blink::WebView* view,
|
/external/chromium_org/third_party/WebKit/Source/web/ |
WebEmbeddedWorkerImpl.h | 47 class WebView; 88 // Both WebView and WebFrame objects are close()'ed (where they're 91 WebView* m_webView;
|
/external/chromium_org/third_party/WebKit/public/testing/ |
WebTestInterfaces.h | 48 class WebView; 63 void setWebView(blink::WebView*, WebTestProxyBase*);
|
WebPreferences.h | 40 class WebView;
|
/packages/apps/UnifiedEmail/src/com/android/mail/browse/ |
MailWebView.java | 5 import android.webkit.WebView; 7 public class MailWebView extends WebView {
|
WebViewContextMenu.java | 35 import android.webkit.WebView; 90 new Intent(Intent.ACTION_DIAL, Uri.parse(WebView.SCHEME_TEL)), 160 WebView webview = (WebView) v; local 161 WebView.HitTestResult result = webview.getHitTestResult(); 168 case WebView.HitTestResult.UNKNOWN_TYPE: 169 case WebView.HitTestResult.EDIT_TEXT_TYPE: 194 type == WebView.HitTestResult.PHONE_TYPE) [all...] |
/cts/tests/tests/webkit/src/android/webkit/cts/ |
WebViewClientTest.java | 30 import android.webkit.WebView; 87 // Verify shouldoverrideurlloading called on webview called via onCreateWindow 101 WebView view, boolean isDialog, boolean isUserGesture, Message resultMsg) { 102 WebView.WebViewTransport transport = (WebView.WebViewTransport) resultMsg.obj; 103 WebView childWebView = new WebView(view.getContext()); 337 public void onPageStarted(WebView view, String url, Bitmap favicon) { 343 public void onPageFinished(WebView view, String url) { 351 public void onLoadResource(WebView view, String url) [all...] |
WebChromeClientTest.java | 28 import android.webkit.WebView; 345 public void onProgressChanged(WebView view, int newProgress) { 351 public void onReceivedTitle(WebView view, String title) { 358 public boolean onJsAlert(WebView view, String url, String message, JsResult result) { 367 public boolean onJsConfirm(WebView view, String url, String message, JsResult result) { 376 public boolean onJsPrompt(WebView view, String url, String message, 386 public boolean onJsBeforeUnload(WebView view, String url, String message, JsResult result) { 395 public void onCloseWindow(WebView window) { 401 public boolean onCreateWindow(WebView view, boolean dialog, boolean userGesture, 407 WebView.WebViewTransport transport = (WebView.WebViewTransport) resultMsg.obj [all...] |
/development/samples/ApiDemos/src/com/example/android/apis/app/ |
PrintHtmlOffScreen.java | 30 import android.webkit.WebView; 37 * from a {@link WebView} which is not shown on the screen. 41 * is not on the screen is printed via an off-screen {@link WebView}. 45 * @see WebView 49 private WebView mWebView; 74 // Create a WebView and hold on to it as the printing will start when 76 mWebView = new WebView(this); 81 public void onPageFinished(WebView view, String url) { 123 // and destroy the WebView as it is expensive to keep around.
|
/external/chromium_org/chrome/renderer/extensions/ |
chrome_v8_extension.cc | 19 #include "third_party/WebKit/public/web/WebView.h" 24 using blink::WebView;
|
/external/chromium_org/ui/views/controls/webview/ |
webview.h | 13 #include "ui/views/controls/webview/webview_export.h" 24 class WEBVIEW_EXPORT WebView : public View, 30 explicit WebView(content::BrowserContext* browser_context); 31 virtual ~WebView(); 33 // This creates a WebContents if none is yet associated with this WebView. The 34 // WebView owns this implicitly created WebContents. 37 // Creates a WebContents if none is yet assocaited with this WebView, with the 38 // specified site instance. The WebView owns this WebContents. 41 // WebView does not assume ownership of WebContents set via this method, only 45 // If |mode| is true, WebView will register itself with WebContents as [all...] |
/external/chromium_org/ui/views/examples/ |
webview_example.cc | 10 #include "ui/views/controls/webview/webview.h" 17 : ExampleBase("WebView"), 26 webview_ = new WebView(browser_context_);
|
/packages/screensavers/WebView/src/com/android/dreams/web/ |
Screensaver.java | 42 import android.webkit.WebView; 51 public boolean shouldOverrideUrlLoading(WebView view, String url) { 76 WebView webview = (WebView) findViewById(R.id.webview); local 77 webview.setWebViewClient(new LinkLauncher()); 79 WebSettings webSettings = webview.getSettings(); 82 webview.loadUrl(url);
|
/external/chromium_org/components/visitedlink/renderer/ |
visitedlink_slave.cc | 10 #include "third_party/WebKit/public/web/WebView.h" 12 using blink::WebView; 76 WebView::updateVisitedLinkState(fingerprints[i]); 80 WebView::resetVisitedLinkState();
|
/external/chromium_org/content/public/renderer/ |
render_view.h | 25 class WebView; 41 // Returns the RenderView containing the given WebView. 42 static RenderView* FromWebView(blink::WebView* webview); 47 // Visit all RenderViews with a live WebView (i.e., RenderViews that have 75 // Returns the associated WebView. May return NULL when the view is closing. 76 virtual blink::WebView* GetWebView() = 0; 110 // Returns the current visibility of the WebView.
|
/external/chromium_org/third_party/WebKit/Source/testing/runner/ |
AccessibilityController.h | 40 class WebView; 65 void setWebView(blink::WebView* webView) { m_webView = webView; } 91 blink::WebView* m_webView;
|
/packages/apps/Browser/src/com/android/browser/ |
UiController.java | 23 import android.webkit.WebView; 37 WebView getCurrentWebView(); 39 WebView getCurrentTopWebView();
|
NetworkStateHandler.java | 26 import android.webkit.WebView; 104 WebView w = mController.getCurrentWebView(); 115 WebView w = mController.getCurrentWebView();
|
/packages/apps/HTMLViewer/src/com/android/htmlviewer/ |
HTMLViewerActivity.java | 28 import android.webkit.WebView; 37 * Wraps a WebView widget within an Activity. When launched, it uses the 38 * URI from the intent as the URL to load into the WebView. 39 * It supports all URLs schemes that a standard WebView supports, as well as 41 * The WebView default settings are used with the exception of normal layout 50 * The WebView that is placed in this Activity 52 private WebView mWebView; 69 // BrowserFrame by WebView. As it is called in WebCore thread, it can 76 mWebView = new WebView(this); 82 // Configure the webview [all...] |
/external/chromium_org/chrome/test/chromedriver/ |
window_commands.cc | 46 Status GetUrl(WebView* web_view, const std::string& frame, std::string* url) { 92 Status GetVisibleCookies(WebView* web_view, 128 Session* session, WebView* web_view, int x, int y, int* offset_x, 169 Session* session, WebView* web_view, TouchEventType type, 195 WebView* web_view = NULL; 241 WebView* web_view, 252 WebView* web_view, 272 WebView* web_view, 289 WebView* web_view, 360 WebView* web_view [all...] |
element_commands.cc | 32 WebView* web_view, 78 WebView* web_view, 96 WebView* web_view, 108 WebView* web_view, 119 WebView* web_view, 129 WebView* web_view, 152 WebView* web_view, 197 WebView* web_view, 222 WebView* web_view, 237 WebView* web_view [all...] |
/external/chromium_org/chrome/browser/chromeos/login/ |
simple_web_view_dialog.h | 25 class WebView; 113 views::WebView* web_view_; 116 scoped_ptr<views::WebView> web_view_container_;
|
/external/chromium_org/third_party/WebKit/Source/web/tests/ |
FrameTestHelpers.h | 50 // Convenience class for handling the lifetime of a WebView and its associated mainframe in tests. 57 // Creates and initializes the WebView. Implicitly calls reset() first. IF a 67 WebView* webView() const { return m_webView; }
|
/external/chromium_org/third_party/libjingle/source/talk/examples/android/src/org/appspot/apprtc/ |
GAEChannelClient.java | 36 import android.webkit.WebView; 49 private WebView webView; 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. 80 WebView view, int errorCode, String description, 88 webView.addJavascriptInterface [all...] |
/frameworks/base/tools/layoutlib/bridge/src/android/webkit/ |
WebView.java | 30 * Mock version of the WebView. 31 * Only non override public methods from the real WebView have been added in there. 37 public class WebView extends MockView { 40 * Construct a new WebView with a Context object. 43 public WebView(Context context) { 48 * Construct a new WebView with layout parameters. 52 public WebView(Context context, AttributeSet attrs) { 57 * Construct a new WebView with layout parameters and a default style. 62 public WebView(Context context, AttributeSet attrs, int defStyle) {
|