| /frameworks/base/core/java/android/webkit/ |
| JWebCoreJavaBridge.java | 47 // keep track of the main WebView attached to the current window so that we 49 private static WeakReference<WebView> sCurrentMainWebView = 50 new WeakReference<WebView>(null); 68 static synchronized void setActiveWebView(WebView webview) { 70 // it is possible if there is a sub-WebView. Do nothing. 73 sCurrentMainWebView = new WeakReference<WebView>(webview); 76 static synchronized void removeActiveWebView(WebView webview) { [all...] |
| PluginFullScreenHolder.java | 36 private final WebView mWebView; 40 PluginFullScreenHolder(WebView webView, int npp) { 41 super(webView.getContext(), android.R.style.Theme_NoTitleBar_Fullscreen); 42 mWebView = webView; 58 // by the ViewManager when it is re-attached to the WebView. 71 mWebView.mPrivateHandler.obtainMessage(WebView.HIDE_FULLSCREEN)
|
| /external/webkit/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...] |
| WebEditorClient.h | 35 class WebView; 41 WebEditorClient(WebView*); 115 WebView* m_webView;
|
| /external/webkit/WebKit/chromium/public/ |
| WebView.h | 52 class WebView : public WebWidget { 56 // Creates a WebView that is NOT yet initialized. You will need to 59 WEBKIT_API static WebView* create(WebViewClient*); 61 // After creating a WebView, you should immediately call this method. 70 // The returned pointer is valid for the lifetime of the WebView. 78 // Makes the WebView transparent. This is useful if you want to have 92 // Controls the WebView's active state, which may affect the rendering 164 // WebView (if there is such an image) 167 // Notifies the WebView that a drag has terminated. 172 // Notfies the WebView that the system drag and drop operation has ended [all...] |
| /external/webkit/WebKit/mac/WebView/ |
| 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.
|
| WebClipView.m | 45 - (WebView *)_webView; 108 WebView *wv = [docView _webView];
|
| WebNavigationData.h | 30 @class WebView;
|
| /external/webkit/WebCore/platform/graphics/android/ |
| android_graphics.h | 70 friend class WebView;
|
| /external/webkit/WebKit/chromium/src/ |
| WebAccessibilityCacheImpl.h | 44 virtual void initialize(WebView* view);
|
| WebWorkerImpl.h | 43 class WebView;
|
| /external/webkit/WebKitTools/DumpRenderTree/mac/ |
| FrameLoadDelegate.mm | 78 BOOL isMainFrame = (self == [[self webView] mainFrame]); 129 - (void)webView:(WebView *)c locationChangeDone:(NSError *)error forDataSource:(WebDataSource *)dataSource 143 - (void)webView:(WebView *)sender didStartProvisionalLoadForFrame:(WebFrame *)frame 163 - (void)webView:(WebView *)sender didCommitLoadForFrame:(WebFrame *)frame 175 [[[mainFrame webView] window] makeFirstResponder:documentView]; 178 - (void)webView:(WebView *)sender didFailProvisionalLoadWithError:(NSError *)error forFrame:(WebFrame *)fram [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) {
|
| /packages/apps/Settings/src/com/android/settings/ |
| SettingsLicenseActivity.java | 24 import android.webkit.WebView; 98 WebView webView = new WebView(this); 100 // Begin the loading. This will be done in a separate thread in WebView. 101 webView.loadDataWithBaseURL(null, data.toString(), "text/html", "utf-8", null); 102 webView.setWebViewClient(new WebViewClient() { 104 public void onPageFinished(WebView view, String url) { 112 p.mView = webView;
|
| /packages/apps/Browser/src/com/android/browser/ |
| TabControl.java | 28 import android.webkit.WebView; 48 // Directory to store thumbnails for each WebView. 71 * Return the current tab's main WebView. This will always return the main 72 * WebView for a given tab and not a subwindow. 73 * @return The current tab's WebView. 75 WebView getCurrentWebView() { 84 * Return the current tab's top-level WebView. This can return a subwindow 86 * @return The top-level WebView of the current tab. 88 WebView getCurrentTopWebView() { 100 WebView getCurrentSubWindow() 437 final WebView webview = t.getWebView(); local 454 WebView webview = t.getWebView(); local [all...] |
| Tab.java | 67 import android.webkit.WebView; 77 * Class for maintaining Tabs with a main WebView and a subwindow. 89 // Main WebView wrapper 91 // Main WebView 92 private WebView mMainView; 95 // Subwindow WebView 96 private WebView mSubView; 98 // information needed to restore the WebView if the user goes back to the 120 // Keep the original url around to avoid killing the old WebView if the url 149 static final String WEBVIEW = "webview" [all...] |
| /external/webkit/WebKit/mac/WebCoreSupport/ |
| WebPluginHalterClient.mm | 30 #import "WebView.h" 35 WebPluginHalterClient::WebPluginHalterClient(WebView *webView) 36 : m_webView(webView) 38 ASSERT_ARG(webView, webView); 44 return CallUIDelegateReturningBoolean(NO, m_webView, @selector(webView:shouldHaltPlugin:isWindowed:pluginName:), kit(pluginNode), isWindowed, (NSString *)pluginName); 49 return [[m_webView UIDelegate] respondsToSelector:@selector(webView:shouldHaltPlugin:isWindowed:pluginName:)];
|
| WebFrameLoaderClient.mm | 218 return [m_webFrame.get() webView] != nil; 271 WebView *webView = getWebView(m_webFrame.get()); 272 [webView removePluginInstanceViewsFor:(m_webFrame.get())]; 287 WebView *webView = getWebView(m_webFrame.get()); 291 delegate:[webView downloadDelegate] 306 WebView *webView = getWebView(m_webFrame.get()); 307 WebBackForwardList *history = [webView backForwardList] [all...] |
| WebEditorClient.h | 35 @class WebView; 40 WebEditorClient(WebView *); 135 WebView *m_webView;
|
| WebChromeClient.h | 34 @class WebView; 38 WebChromeClient(WebView *webView); 39 WebView *webView() { return m_webView; } 165 WebView *m_webView;
|
| /frameworks/base/tests/BrowserPowerTest/src/com/android/browserpowertest/ |
| PowerTestActivity.java | 28 import android.webkit.WebView; 45 private WebView webView; 73 webView = new WebView(this); 74 webView.getSettings().setJavaScriptEnabled(true); 75 webView.getSettings().setJavaScriptCanOpenWindowsAutomatically(false); 76 webView.getSettings().setLayoutAlgorithm(LayoutAlgorithm.NORMAL); 80 webView.setWebViewClient(webViewClient); 81 webView.setWebChromeClient(chromeClient) [all...] |
| /cts/tests/tests/webkit/src/android/webkit/cts/ |
| WebBackForwardListTest.java | 28 import android.webkit.WebView; 35 private WebView mWebView; 92 private void checkBackForwardList(final WebView view, final String... url) {
|
| WebHistoryItemTest.java | 31 import android.webkit.WebView; 77 final WebView view = getActivity().getWebView(); 113 final WebView view = getActivity().getWebView(); 114 // set the web view client so that redirects are loaded in the WebView itself 149 private void assertLoadUrlSuccessfully(final WebView view, String url) {
|
| /external/webkit/WebKit/win/ |
| WebDropSource.cpp | 30 #include "WebView.h" 46 HRESULT WebDropSource::createInstance(WebView* webView, IDropSource** result) 48 if (!webView || !result) 50 *result = new WebDropSource(webView); 54 WebDropSource::WebDropSource(WebView* webView) 57 , m_webView(webView) 96 PlatformMouseEvent generateMouseEvent(WebView* webView, bool isDrag) [all...] |
| /frameworks/base/core/tests/coretests/src/android/widget/focus/ |
| ListWithMailMessages.java | 31 import android.webkit.WebView; 139 WebView body = (WebView) messageUi.findViewById(R.id.body);
|