HomeSort by relevance Sort by last modified time
    Searched defs:WebView (Results 1 - 25 of 31) sorted by null

1 2

  /external/webkit/Source/WebKit/qt/tests/hybridPixmap/
widget.h 28 typedef QWebView WebView;
  /external/webkit/Tools/WebKitTestRunner/qt/
PlatformWebViewQt.cpp 36 class WebView : public QGraphicsView {
38 WebView(WKContextRef);
42 virtual ~WebView() { delete m_item; }
48 WebView::WebView(WKContextRef contextRef)
57 : m_view(new WebView(contextRef))
  /external/webkit/Source/WebKit/chromium/public/
WebView.h 57 class WebView : public WebWidget {
84 // Creates a WebView that is NOT yet initialized. You will need to
87 WEBKIT_API static WebView* create(WebViewClient*);
89 // After creating a WebView, you should immediately call this method.
103 // The returned pointer is valid for the lifetime of the WebView.
111 // Makes the WebView transparent. This is useful if you want to have
125 // Controls the WebView's active state, which may affect the rendering
214 // WebView (if there is such an image)
217 // Notifies the WebView that a drag has terminated.
222 // Notifies the WebView that a drag is going on
    [all...]
  /external/webkit/Source/WebKit2/UIProcess/gtk/
WebView.h 47 class WebView : public RefCounted<WebView>, public PageClient {
49 ~WebView();
50 static PassRefPtr<WebView> create(WebContext* context, WebPageGroup* pageGroup)
52 return adoptRef(new WebView(context, pageGroup));
71 WebView(WebContext*, WebPageGroup*);
124 // Members of WebView class
WebView.cpp 29 #include "WebView.h"
48 void WebView::handleFocusInEvent(GtkWidget* widget)
58 void WebView::handleFocusOutEvent(GtkWidget* widget)
65 static void backspaceCallback(GtkWidget* widget, WebView* client)
71 static void selectAllCallback(GtkWidget* widget, gboolean select, WebView* client)
77 static void cutClipboardCallback(GtkWidget* widget, WebView* client)
83 static void copyClipboardCallback(GtkWidget* widget, WebView* client)
89 static void pasteClipboardCallback(GtkWidget* widget, WebView* client)
125 static void deleteFromCursorCallback(GtkWidget* widget, GtkDeleteType deleteType, gint count, WebView* client)
184 static void moveCursorCallback(GtkWidget* widget, GtkMovementStep step, gint count, gboolean extendSelection, WebView* client
    [all...]
  /external/webkit/Source/WebKit/wince/
WebView.cpp 27 #include "WebView.h"
59 LRESULT CALLBACK WebView::webViewWndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam)
61 if (WebView* webView = reinterpret_cast<WebView*>(GetWindowLong(hWnd, 0)))
62 return webView->wndProc(hWnd, message, wParam, lParam);
74 WebView::WebView(HWND hwnd, unsigned features)
121 WebView::~WebView()
    [all...]
WebView.h 45 class WebView {
52 WebView(HWND hwnd, unsigned features = EnableDoubleBuffering);
53 ~WebView();
  /frameworks/opt/mailcommon/java/com/android/mailcommon/
WebViewContextMenu.java 36 import android.webkit.WebView;
148 WebView webview = (WebView) v; local
149 WebView.HitTestResult result = webview.getHitTestResult();
156 case WebView.HitTestResult.UNKNOWN_TYPE:
157 case WebView.HitTestResult.EDIT_TEXT_TYPE:
182 type == WebView.HitTestResult.PHONE_TYPE);
184 type == WebView.HitTestResult.EMAIL_TYPE)
    [all...]
  /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);
WebView.cpp 27 #include "WebView.h"
106 LRESULT CALLBACK WebView::WebViewWndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam)
110 if (WebView* webView = reinterpret_cast<WebView*>(longPtr))
111 return webView->wndProc(hWnd, message, wParam, lParam);
116 // Associate the WebView with the window.
124 LRESULT WebView::wndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam)
237 bool WebView::registerWebViewWindowClass()
248 wcex.lpfnWndProc = WebView::WebViewWndProc
    [all...]
  /frameworks/base/core/java/android/webkit/
WebView.java 62 * in a WebView, you must add the {@code INTERNET} permissions to your
71 * <a href="{@docRoot}guide/webapps/webview.html">Building Web Apps in WebView</a>.</p>
75 * <p>By default, a WebView provides no browser-like widgets, does not
82 * with a WebView. For example:
90 * <p>To provide a WebView in your own Activity, include a {@code <WebView>} in your layout,
91 * or set the entire Activity window as a WebView during {@link
94 * WebView webview = new WebView(this)
    [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) {
  /external/webkit/Source/WebKit/win/
WebView.cpp 27 #include "WebView.h"
186 static HashSet<WebView*> pendingDeleteBackingStoreSet;
190 WebView* kit(Page* page)
192 return page ? static_cast<WebChromeClient*>(page->chrome()->client())->webView() : 0;
262 if (!WebView::didSetCacheModel() || cacheModel > WebView::cacheModel())
263 WebView::setCacheModel(cacheModel);
264 else if (cacheModel < WebView::cacheModel()) {
269 WebView::setCacheModel(max(sharedPreferencesCacheModel, WebView::maxCacheModelInAnyInstance()))
    [all...]
WebView.h 64 WebView* kit(WebCore::Page*);
69 class WebView
86 static WebView* createInstance();
88 WebView();
89 ~WebView();
826 // WebView
    [all...]
  /external/webkit/Source/WebKit/android/nav/
WebView.cpp 66 #define GET_NATIVE_VIEW(env, obj) ((WebView*)env->GetIntField(obj, gWebViewField))
101 // of the multi-threaded WebView.
102 class WebView
111 enum DrawExtras { // keep this in sync with WebView.java
140 WebView(JNIEnv* env, jobject javaWebView, int viewImpl, WTF::String drawableDir,
188 ~WebView()
286 ALOG_ASSERT(m_javaGlue.m_obj, "A java object was not associated with this native WebView!");
332 ALOG_ASSERT(m_javaGlue.m_obj, "A java object was not associated with this native WebView!");
344 ALOG_ASSERT(m_javaGlue.m_obj, "A java object was not associated with this native WebView!");
430 getDrawExtra(WebView::DrawExtrasSelection))
1225 WebView* webview = reinterpret_cast<WebView*>(nativeView); local
1240 WebView* webview = reinterpret_cast<WebView*>(nativeView); local
1298 WebView* webview = reinterpret_cast<WebView*>(nativeView); local
1313 WebView* webview = reinterpret_cast<WebView*>(nativeView); local
1323 WebView* webview = reinterpret_cast<WebView*>(nativeView); local
1330 WebView* webview = reinterpret_cast<WebView*>(nativeView); local
1340 WebView* webview = reinterpret_cast<WebView*>(nativeView); local
1347 WebView* webview = reinterpret_cast<WebView*>(nativeView); local
    [all...]
  /packages/apps/Browser/src/com/android/browser/
Controller.java 80 import android.webkit.WebView;
326 WebView webView = t.getWebView();
330 webView.setInitialScale(scale);
406 public void onSetWebView(Tab tab, WebView view) {
413 WebView mainView = tab.getWebView();
414 WebView subView = mFactory.createWebView((mainView == null)
494 WebView view = (WebView) focusNodeMap.get("webview");
1288 final WebView webview = (WebView) v; local
    [all...]
  /prebuilts/sdk/16/
android.jar 
  /prebuilts/sdk/17/
android.jar 
  /prebuilts/sdk/current/
android.jar 
  /prebuilts/sdk/10/
android.jar 
  /prebuilts/sdk/11/
android.jar 
  /prebuilts/sdk/12/
android.jar 
  /prebuilts/sdk/14/
android.jar 
  /prebuilts/sdk/15/
android.jar 
  /prebuilts/sdk/4/
android.jar 

Completed in 616 milliseconds

1 2