| /external/webkit/Tools/DumpRenderTree/chromium/ |
| WebPreferences.h | 39 class WebView; 86 void applyTo(WebKit::WebView*);
|
| DRTDevToolsAgent.h | 44 class WebView; 58 void setWebView(WebKit::WebView*); 100 WebKit::WebView* m_webView;
|
| /external/webkit/Tools/DumpRenderTree/mac/ |
| MockGeolocationProvider.mm | 74 - (void)registerWebView:(WebView *)webView 76 _registeredViews.add(webView); 82 - (void)unregisterWebView:(WebView *)webView 84 _registeredViews.remove(webView); 103 HashSet<WebView*> views = _registeredViews; 104 for (HashSet<WebView*>::iterator iter = views.begin(); iter != views.end(); ++iter) {
|
| MockGeolocationProvider.h | 36 HashSet<WebView *> _registeredViews;
|
| DumpRenderTreeWindow.mm | 91 - (WebView *)webView 96 if ([firstView isKindOfClass:[WebView class]]) 97 return static_cast<WebView *>(firstView); 104 [[self webView] _setPostsAcceleratedCompositingNotifications:YES]; 111 // If the WebView has gone into compositing mode, turn on window autodisplay. This is necessary for CA 114 if ([[self webView] _isUsingAcceleratedCompositing])
|
| PolicyDelegate.mm | 36 #import <WebKit/WebView.h> 48 - (void)webView:(WebView *)webView decidePolicyForNavigationAction:(NSDictionary *)actionInformation 97 - (void)webView:(WebView *)webView unableToImplementPolicyWithError:(NSError *)error frame:(WebFrame *)frame
|
| /external/webkit/Source/WebKit/mac/WebView/ |
| WebPolicyDelegatePrivate.h | 51 - (BOOL)webView:(WebView *)webView shouldGoToHistoryItem:(WebHistoryItem *)item;
|
| WebFrame.h | 40 @class WebView; 54 @method initWithName:webFrameView:webView: 56 @discussion WebFrames are normally created for you by the WebView. You should 60 @param webView The WebView that manages the frame. 63 - (id)initWithName:(NSString *)name webFrameView:(WebFrameView *)view webView:(WebView *)webView; 72 @method webView 73 @result Returns the WebView for the document that includes this frame [all...] |
| WebViewPrivate.h | 29 #import <WebKit/WebView.h> 76 // One of the subviews of the WebView entered compositing mode. 110 IBOutlet WebView *webView; 112 - (WebView *)webView; 113 - (void)setWebView:(WebView *)newWebView; 116 @interface WebView (WebViewEditingActionsPendingPublic) 122 @interface WebView (WebPendingPublic) 136 // setHoverFeedbackSuspended: can be called by clients that want to temporarily prevent the webView [all...] |
| WebViewEventHandling.mm | 53 @implementation WebView (WebViewEventHandling) 55 static WebView *lastMouseoverView; 91 RetainPtr<WebView> protector = self; 158 WebView *oldView = lastMouseoverView; 165 if ([hitView isKindOfClass:[WebView class]]) { 166 lastMouseoverView = static_cast<WebView *>(hitView); 237 // FIXME (Viewless): Code to handle tooltips needs to move into WebView.
|
| WebNavigationData.h | 30 @class WebView;
|
| /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);
|
| /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; 105 WebView w = mController.getCurrentWebView(); 116 WebView w = mController.getCurrentWebView();
|
| /cts/tests/tests/webkit/src/android/webkit/cts/ |
| WebChromeClientTest.java | 28 import android.webkit.WebView; 325 public void onProgressChanged(WebView view, int newProgress) { 331 public void onReceivedTitle(WebView view, String title) { 338 public boolean onJsAlert(WebView view, String url, String message, JsResult result) { 347 public boolean onJsConfirm(WebView view, String url, String message, JsResult result) { 356 public boolean onJsPrompt(WebView view, String url, String message, 366 public boolean onJsBeforeUnload(WebView view, String url, String message, JsResult result) { 375 public void onCloseWindow(WebView window) { 381 public boolean onCreateWindow(WebView view, boolean dialog, boolean userGesture, 383 WebView childView = new WebView(getActivity()) [all...] |
| WebViewClientTest.java | 26 import android.webkit.WebView; 258 public void onPageStarted(WebView view, String url, Bitmap favicon) { 264 public void onPageFinished(WebView view, String url) { 272 public void onLoadResource(WebView view, String url) { 279 public void onReceivedError(WebView view, int errorCode, 286 public void onFormResubmission(WebView view, Message dontResend, Message resend) { 292 public void doUpdateVisitedHistory(WebView view, String url, boolean isReload) { 298 public void onReceivedHttpAuthRequest(WebView view, 305 public void onUnhandledKeyEvent(WebView view, KeyEvent event) { 311 public void onScaleChanged(WebView view, float oldScale, float newScale) [all...] |
| /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/webkit/Source/WebKit/win/WebCoreSupport/ |
| WebFrameLoaderClient.cpp | 51 #include "WebView.h" 94 return m_webFrame->webView(); 116 WebView* webView = m_webFrame->webView(); 118 if (FAILED(webView->resourceLoadDelegate(&resourceLoadDelegate))) 122 resourceLoadDelegate->identifierForInitialRequest(webView, webURLRequest.get(), getWebDataSource(loader), identifier); 127 WebView* webView = m_webFrame->webView(); [all...] |
| /packages/apps/Browser/tests/src/com/android/browser/ |
| PopularUrlsTest.java | 34 import android.webkit.WebView; 123 * and wrapping the WebView's helper clients. 136 WebView webView = tab.getWebView(); 138 webView.setWebChromeClient(new TestWebChromeClient( 139 WebViewClassic.fromWebView(webView).getWebChromeClient()) { 142 public void onProgressChanged(WebView view, int newProgress) { 160 public boolean onJsAlert(WebView view, String url, String message, 173 public boolean onJsConfirm(WebView view, String url, String message, 187 public boolean onJsPrompt(WebView view, String url, String message [all...] |
| /external/webkit/Source/WebKit/wince/ |
| WebView.h | 45 class WebView { 52 WebView(HWND hwnd, unsigned features = EnableDoubleBuffering); 53 ~WebView();
|
| /external/webkit/Source/WebKit/chromium/src/ |
| WebAccessibilityCacheImpl.h | 44 virtual void initialize(WebView* view);
|
| WebWorkerImpl.h | 43 class WebView;
|
| /external/webkit/Source/WebKit/chromium/tests/ |
| WebFrameTest.cpp | 43 #include "WebView.h" 102 // Create and initialize the WebView. 104 WebView* webView = WebView::create(0); 105 webView->initializeMainFrame(&webFrameClient); 107 loadFrame(webView->mainFrame(), "iframes_test.html"); 111 std::string content = webView->mainFrame()->contentAsText(1024).utf8(); 118 webView->close(); 128 // Create and initialize the WebView [all...] |
| /external/webkit/Source/WebKit/wince/WebCoreSupport/ |
| ContextMenuClientWinCE.cpp | 35 ContextMenuClientWinCE::ContextMenuClientWinCE(WebView *webView) 36 : m_webView(webView)
|
| InspectorClientWinCE.cpp | 34 InspectorClientWinCE::InspectorClientWinCE(WebView* webView) 35 : m_inspectedWebView(webView)
|