HomeSort by relevance Sort by last modified time
    Searched refs:WebView (Results 226 - 250 of 352) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /development/samples/MySampleRss/src/com/example/codelab/rssexample/
MyRssReader5.java 30 import android.webkit.WebView;
44 private WebView mWebView;
59 mWebView = (WebView)findViewById(R.id.rssWebView);
  /development/samples/Wiktionary/src/com/example/android/wiktionary/
LookupActivity.java 41 import android.webkit.WebView;
58 private WebView mWebView;
101 mWebView = (WebView) findViewById(R.id.webview);
251 * {@link WebView} to show the requested content.
319 * {@link WebView} and hide the {@link ProgressBar}.
  /external/webkit/Source/WebKit/mac/WebCoreSupport/
WebChromeClient.h 34 @class WebView;
38 WebChromeClient(WebView*);
39 virtual void* webView() const { return static_cast<void*>(m_webView); }
186 WebView *m_webView;
  /external/webkit/Tools/WebKitAPITest/tests/
WebViewDestruction.cpp 55 COMPtr<IWebView> webView;
56 TEST_ASSERT(SUCCEEDED(WebKitCreateInstance(__uuidof(WebView), &webView)));
59 TEST_ASSERT(SUCCEEDED(webView->setHostWindow(reinterpret_cast<OLE_HANDLE>(window.window()))));
60 TEST_ASSERT(SUCCEEDED(webView->initWithFrame(window.clientRect(), 0, 0)));
62 COMPtr<IWebViewPrivate> viewPrivate(Query, webView);
67 outWebView.adoptRef(webView.releaseRef());
83 static void finishWebViewDestructionTest(COMPtr<IWebView>& webView, HWND viewWindow)
88 // We haven't crashed. Release the WebView and ensure that its view window has been destroyed and the WebView doesn't leak
    [all...]
  /frameworks/base/core/java/android/webkit/
FindActionModeCallback.java 40 View.OnClickListener, WebView.FindListener {
44 private WebView mWebView;
90 * Set the WebView to search. Must be non null.
92 public void setWebView(WebView webView) {
93 if (null == webView) {
94 throw new AssertionError("WebView supplied to "
97 mWebView = webView;
117 "No WebView for FindActionModeCallback::findNext");
138 "No WebView for FindActionModeCallback::findAll")
    [all...]
WebViewProvider.java 37 import android.webkit.WebView.HitTestResult;
38 import android.webkit.WebView.PictureListener;
45 * WebView backend provider interface: this interface is the abstract backend to a WebView
46 * instance; each WebView object is bound to exactly one WebViewProvider object which implements
47 * the runtime behavior of that WebView.
49 * All methods must behave as per their namesake in {@link WebView}, unless otherwise noted.
55 // Main interface for backend provider of the WebView class.
58 * Initialize this WebViewProvider instance. Called after the WebView has fully constructed.
88 * See {@link WebView#destroy()}
    [all...]
  /packages/apps/Browser/src/com/android/browser/
ErrorConsoleView.java 28 import android.webkit.WebView;
52 private WebView mWebView;
159 * Sets the webview that this console is associated with. Currently this is used so
162 public void setWebView(WebView webview) {
163 mWebView = webview;
SnapshotTab.java 29 import android.webkit.WebView;
56 WebView web = mWebViewFactory.createWebView(false);
64 WebView web = mWebViewFactory.createWebView(false);
BaseUi.java 48 import android.webkit.WebView;
274 WebView web = mActiveTab.getWebView();
305 WebView web = mActiveTab != null ? mActiveTab.getWebView() : null;
344 WebView mainView = tab.getWebView();
345 // Attach the WebView to the container and then attach the
368 // Remove the container that contains the main WebView.
369 WebView mainView = tab.getWebView();
375 // WebView from the container. This will trigger a focus change
376 // needed by WebView.
390 public void onSetWebView(Tab tab, WebView webView)
    [all...]
NavTabView.java 25 import android.webkit.WebView;
  /packages/apps/Email/src/com/android/email/activity/setup/
DebugFragment.java 34 import android.webkit.WebView;
151 WebView webview = new WebView(getActivity()); local
153 webview.clearCache(true);
154 Log.w(Logging.LOG_TAG, "Cleard WebView cache.");
156 webview.destroy();
  /external/webkit/Source/WebKit/win/WebCoreSupport/
WebInspectorClient.cpp 36 #include "WebView.h"
69 WebInspectorClient::WebInspectorClient(WebView* webView)
70 : m_inspectedWebView(webView)
98 COMPtr<WebView> frontendWebView(AdoptCOM, WebView::createInstance());
207 WebInspectorFrontendClient::WebInspectorFrontendClient(WebView* inspectedWebView, HWND inspectedWebViewHwnd, HWND frontendHwnd, const COMPtr<WebView>& frontendWebView, HWND frontendWebViewHwnd, WebInspectorClient* inspectorClient, PassOwnPtr<Settings> settings)
347 // Remove the Inspector's WebView from the inspected WebView's parent window
    [all...]
WebContextMenuClient.cpp 32 #include "WebView.h"
46 WebContextMenuClient::WebContextMenuClient(WebView* webView)
47 : m_webView(webView)
WebDragClient.cpp 30 #include "WebView.h"
59 WebDragClient::WebDragClient(WebView* webView)
60 : m_webView(webView)
62 ASSERT(webView);
119 COMPtr<WebView> viewProtector = m_webView;
  /external/webkit/Tools/DumpRenderTree/mac/
LayoutTestControllerMac.mm 72 #import <WebKit/WebView.h>
130 return [[mainFrame webView] shouldClose];
202 WebBackForwardList *backForwardList = [[mainFrame webView] backForwardList];
258 return [[mainFrame webView] _computedStyleIncludingVisitedInfo:context forElement:value];
263 return [[mainFrame webView] _nodesFromRect:context forDocument:value x:x y:y top:top right:right bottom:bottom left:left ignoreClipping:ignoreClipping];
318 return [[[mainFrame webView] UIDelegate] numberOfPendingGeolocationPermissionRequests];
357 [(EditingDelegate *)[[mainFrame webView] editingDelegate] setAcceptsEditing:newAcceptsEditing];
384 [[[mainFrame webView] preferences] setAuthorAndUserStylesEnabled:flag];
400 [[mainFrame webView] setPolicyDelegate:policyDelegate];
402 [[mainFrame webView] setPolicyDelegate:nil]
    [all...]
  /external/webkit/Source/WebKit/chromium/src/
WebViewImpl.cpp 175 // those in Apple's port in WebKit/WebKit/WebView/WebView.mm
176 const double WebView::textSizeMultiplierRatio = 1.2;
177 const double WebView::minTextSizeMultiplier = 0.5;
178 const double WebView::maxTextSizeMultiplier = 3.0;
214 // WebView ----------------------------------------------------------------
216 WebView* WebView::create(WebViewClient* client)
225 void WebView::setUseExternalPopupMenus(bool useExternalPopupMenus)
230 void WebView::updateVisitedLinkState(unsigned long long linkHash
    [all...]
AssertMatchingEnums.cpp 86 #include "WebView.h"
379 COMPILE_ASSERT_MATCHING_ENUM(WebView::UserScriptInjectAtDocumentStart, InjectAtDocumentStart);
380 COMPILE_ASSERT_MATCHING_ENUM(WebView::UserScriptInjectAtDocumentEnd, InjectAtDocumentEnd);
381 COMPILE_ASSERT_MATCHING_ENUM(WebView::UserContentInjectInAllFrames, InjectInAllFrames);
382 COMPILE_ASSERT_MATCHING_ENUM(WebView::UserContentInjectInTopFrameOnly, InjectInTopFrameOnly);
383 COMPILE_ASSERT_MATCHING_ENUM(WebView::UserStyleInjectInExistingDocuments, InjectInExistingDocuments);
384 COMPILE_ASSERT_MATCHING_ENUM(WebView::UserStyleInjectInSubsequentDocuments, InjectInSubsequentDocuments);
WebAccessibilityCacheImpl.cpp 55 // WebView ----------------------------------------------------------------
95 void WebAccessibilityCacheImpl::initialize(WebView* view)
WebDevToolsFrontendImpl.cpp 77 WebView* view,
WebDevToolsAgentImpl.cpp 122 WebView::willEnterModalLoop();
128 WebView::didExitModalLoop();
WebFrameImpl.h 61 class WebView;
81 virtual WebView* view() const;
  /external/webkit/Source/WebKit/mac/DefaultDelegates/
WebDefaultContextMenuDelegate.mm 138 - (NSArray *)webView:(WebView *)wv contextMenuItemsForElement:(NSDictionary *)element defaultMenuItems:(NSArray *)defaultMenuItems
147 // The Spotlight and Google items are implemented in WebView, and require that the
176 WebView *wv = [webFrame webView];
  /external/webkit/Tools/DumpRenderTree/chromium/
WebPreferences.cpp 34 #include "WebView.h"
110 void WebPreferences::applyTo(WebView* webView)
112 WebSettings* settings = webView->settings();
150 webView->setTabsToLinks(tabsToLinks);
  /external/webkit/Source/WebKit/chromium/public/
WebFrame.h 68 class WebView;
175 virtual WebView* view() const = 0;
  /external/webkit/Source/WebKit/mac/WebView/
WebDataSource.mm 149 return [WebView _viewClass:nil andRepresentationClass:&repClass forMIMEType:MIMEType allowingPlugins:allowPlugins] ? repClass : nil;
295 if ([WebView canShowMIMETypeAsHTML:MIMEType]) {
347 - (WebView *)_webView
349 return [[self webFrame] webView];
355 return [WebView canShowMIMETypeAsHTML:MIMEType];

Completed in 679 milliseconds

1 2 3 4 5 6 7 8 91011>>