| /external/webkit/Source/WebKit/mac/WebView/ |
| WebView.h | 67 @discussion Notifications sent by WebView to mark the progress of loads. 68 @constant WebViewProgressStartedNotification Posted whenever a load begins in the WebView, including 73 @constant WebViewProgressFinishedNotification Posted when the load for a WebView has finished. 81 @class WebView 82 WebView manages the interaction between WebFrameViews and WebDataSources. Modification 90 WebView *webView; 93 webView = [[WebView alloc] initWithFrame: NSMakeRect (0,0,640,480)]; 94 mainFrame = [webView mainFrame] [all...] |
| WebViewInternal.h | 30 // This header contains WebView declarations that can be used anywhere in WebKit, but are neither SPI nor API. 59 @interface WebView (WebViewEditingExtras) 63 @interface WebView (AllWebViews) 69 @interface WebView (WebViewInternal) 101 @interface WebView (WebViewEventHandling) 109 // FIXME: Temporary way to expose methods that are in the wrong category inside WebView. 110 @interface WebView (WebViewOtherInternal) 139 - (WebView *)_openNewWindowWithRequest:(NSURLRequest *)request;
|
| WebScriptDebugger.mm | 98 WebView *webView = [webFrame webView]; 99 WebScriptDebugDelegateImplementationCache* implementations = WebViewGetScriptDebugDelegateImplementations(webView); 101 CallScriptDebugDelegate(implementations->didEnterCallFrameFunc, webView, @selector(webView:didEnterCallFrame:sourceId:line:forWebFrame:), m_topCallFrame.get(), static_cast<NSInteger>(0), -1, webFrame); 119 WebView *webView = [webFrame webView]; 120 WebScriptDebugDelegateImplementationCache* implementations = WebViewGetScriptDebugDelegateImplementations(webView); [all...] |
| WebJSPDFDoc.mm | 31 #import "WebView.h" 50 WebView *webView = [[dataSource webFrame] webView]; 51 CallUIDelegate(webView, @selector(webView:printFrameView:), [[dataSource webFrame] frameView]);
|
| /frameworks/base/core/tests/coretests/src/android/webkit/ |
| AccessibilityInjectorTest.java | 36 * which is used by {@link WebView} to provide basic accessibility support 94 /** Handle to the {@link WebView} to load data in. */ 95 private WebView mWebView; 157 WebView webView = loadHTML(html); 160 sendKeyEvent(webView, KeyEvent.KEYCODE_DPAD_DOWN, META_STATE_ALT_LEFT_ON); 164 sendKeyEvent(webView, KeyEvent.KEYCODE_DPAD_DOWN, META_STATE_ALT_LEFT_ON); 168 sendKeyEvent(webView, KeyEvent.KEYCODE_DPAD_DOWN, 0); 172 sendKeyEvent(webView, KeyEvent.KEYCODE_DPAD_DOWN, 0); 176 sendKeyEvent(webView, KeyEvent.KEYCODE_DPAD_DOWN, 0) [all...] |
| /external/webkit/Source/WebKit/mac/WebCoreSupport/ |
| WebFrameLoaderClient.mm | 225 return [m_webFrame.get() webView] != nil; 276 WebView *webView = getWebView(m_webFrame.get()); 277 [webView removePluginInstanceViewsFor:(m_webFrame.get())]; 292 WebView *webView = getWebView(m_webFrame.get()); 296 delegate:[webView downloadDelegate] 311 WebView *webView = getWebView(m_webFrame.get()); 312 WebBackForwardList *history = [webView backForwardList] [all...] |
| WebInspectorClient.mm | 52 WebView *_inspectedWebView; 53 WebView *_webView; 61 - (id)initWithInspectedWebView:(WebView *)webView; 62 - (WebView *)webView; 76 WebInspectorClient::WebInspectorClient(WebView *webView) 77 : m_webView(webView) 78 , m_highlighter(AdoptNS, [[WebNodeHighlighter alloc] initWithInspectedWebView:webView]) [all...] |
| WebEditorClient.h | 37 @class WebView; 42 WebEditorClient(WebView *); 152 WebView *m_webView;
|
| /cts/tests/src/android/webkit/cts/ |
| WebViewOnUiThread.java | 34 import android.webkit.WebView; 35 import android.webkit.WebView.HitTestResult; 36 import android.webkit.WebView.PictureListener; 45 * Many tests need to run WebView code in the UI thread. This class 46 * wraps a WebView so that calls are ensured to arrive on the UI thread. 80 * The WebView that calls will be made on. 82 private WebView mWebView; 85 * Initializes the webView with a WebViewClient, WebChromeClient, 92 * @param webView The webView that the methods should call [all...] |
| /frameworks/base/tests/DumpRenderTree/src/com/android/dumprendertree/ |
| TestShellActivity.java | 47 import android.webkit.WebView; 90 Log.v(LOGTAG, "Received WebView dump data"); 95 throw new RuntimeException("WebView dump timeout, is it pegged?"); 109 Log.v(LOGTAG, "message sent to WebView to dump text."); 145 mWebView = new WebView(this); 160 // WebView::setJsFlags is noop in JSC build. 568 // TODO: We should look up the correct WebView for the frame which 570 // WebView for the main frame. EventSender suffers from the same 590 public void onPageFinished(WebView view, String url) { 621 public void onPageStarted(WebView view, String url, Bitmap favicon) [all...] |
| /development/samples/training/network-usage/src/com/example/android/networkusage/ |
| NetworkActivity.java | 31 import android.webkit.WebView; 54 * o Presents a WebView screen to users. This WebView has a list of HTML links to the latest 62 * to refresh the WebView content. 161 WebView myWebView = (WebView) findViewById(R.id.webview); 207 // Displays the HTML string in the UI via a WebView 208 WebView myWebView = (WebView) findViewById(R.id.webview) [all...] |
| /frameworks/base/samples/training/network-usage/src/com/example/android/networkusage/ |
| NetworkActivity.java | 31 import android.webkit.WebView; 54 * o Presents a WebView screen to users. This WebView has a list of HTML links to the latest 62 * to refresh the WebView content. 161 WebView myWebView = (WebView) findViewById(R.id.webview); 207 // Displays the HTML string in the UI via a WebView 208 WebView myWebView = (WebView) findViewById(R.id.webview) [all...] |
| /packages/apps/Browser/src/com/android/browser/ |
| GoogleAccountLogin.java | 34 import android.webkit.WebView; 61 private final WebView mWebView; 76 mWebView = new WebView(mActivity); 82 // duplicate the work here using the off-screen WebView. 88 public boolean shouldOverrideUrlLoading(WebView view, String url) { 92 public void onPageFinished(WebView view, String url) {
|
| 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;
|
| /cts/tests/tests/webkit/src/android/webkit/cts/ |
| HttpAuthHandlerTest.java | 21 import android.webkit.WebView; 75 public void onReceivedHttpAuthRequest(WebView view, 97 public void onReceivedHttpAuthRequest(WebView view,
|
| /external/webkit/Source/WebKit/haiku/WebCoreSupport/ |
| FrameLoaderClientHaiku.h | 39 class WebView; 56 void setWebView(WebView*); 254 WebView* m_webView;
|
| /external/webkit/Source/WebKit/wince/WebCoreSupport/ |
| ChromeClientWinCE.h | 30 class WebView; 36 ChromeClientWinCE(WebView* webView); 180 WebView* m_webView;
|
| /frameworks/base/tests/DumpRenderTree2/src/com/android/dumprendertree2/ |
| TestsListActivity.java | 30 import android.webkit.WebView; 139 WebView webView = new WebView(this); 140 webView.getSettings().setJavaScriptEnabled(true); 141 webView.getSettings().setBuiltInZoomControls(true); 142 webView.getSettings().setEnableSmoothTransition(true); 144 webView.getSettings().setUseWideViewPort(true); 146 setContentView(webView); 147 webView.loadUrl(Summarizer.getDetailsUri().toString()) [all...] |
| /sdk/apps/SdkController/src/com/android/tools/sdkcontroller/activities/ |
| MainActivity.java | 24 import android.webkit.WebView; 61 WebView wv = (WebView) findViewById(R.id.webIntro);
|
| /external/webkit/Source/WebKit2/UIProcess/win/ |
| WebView.h | 49 class WebView : public APIObject, public PageClient, WebCore::WindowMessageListener, public IDropTarget { 51 static PassRefPtr<WebView> create(RECT rect, WebContext* context, WebPageGroup* pageGroup, HWND parentWindow) 53 RefPtr<WebView> webView = adoptRef(new WebView(rect, context, pageGroup, parentWindow)); 54 webView->initialize(); 55 return webView; 57 ~WebView(); 89 WebView(RECT, WebContext*, WebPageGroup*, HWND parentWindow);
|
| /external/webkit/Source/WebKit/chromium/public/ |
| WebViewClient.h | 69 class WebView; 77 // Since a WebView is a WebWidget, a WebViewClient is a WebWidgetClient. 84 // Create a new related WebView. This method must clone its session storage 89 virtual WebView* createView(WebFrame* creator, 103 // Create a session storage namespace object associated with this WebView. 134 // These notifications bracket any loading that occurs in the WebView. 168 // This method is called in response to WebView's handleInputEvent() 244 // Take focus away from the WebView by focusing an adjacent UI element 278 // changed and should be saved. See WebView::inspectorSettings.
|
| /external/webkit/Source/WebKit/chromium/src/ |
| WebWorkerBase.h | 54 class WebView; 156 WebView* m_webView;
|
| /external/webkit/Source/WebKit/mac/Misc/ |
| WebKit.h | 52 #import <WebKit/WebView.h>
|
| WebNSViewExtras.m | 38 #import <WebKit/WebView.h> 63 - (WebView *)_webView 65 return (WebView *)[self _web_superviewOfClass:[WebView class]];
|
| /external/webkit/Source/WebKit/mac/Plugins/ |
| WebBaseNetscapePluginView.h | 43 @class WebView; 111 - (WebView *)webView;
|