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

1 2 3

  /external/chromium_org/chrome/browser/guestview/webview/
webview_constants.h 5 // Constants used for the WebView API.
10 namespace webview { namespace
65 } // namespace webview
plugin_permission_helper.cc 5 #include "chrome/browser/guestview/webview/plugin_permission_helper.h"
7 #include "chrome/browser/guestview/webview/webview_guest.h"
8 #include "chrome/browser/guestview/webview/webview_permission_types.h"
59 WebViewGuest* webview = WebViewGuest::FromWebContents(web_contents()); local
60 if (!webview)
66 webview->RequestPermission(static_cast<BrowserPluginPermissionType>(
74 content::UserMetricsAction("WebView.Guest.PluginLoadRequest"));
webview_constants.cc 5 #include "chrome/browser/guestview/webview/webview_constants.h"
7 namespace webview { namespace
10 const char kEventClose[] = "webview.onClose";
11 const char kEventConsoleMessage[] = "webview.onConsoleMessage";
12 const char kEventContentLoad[] = "webview.onContentLoad";
13 const char kEventDialog[] = "webview.onDialog";
14 const char kEventExit[] = "webview.onExit";
15 const char kEventLoadAbort[] = "webview.onLoadAbort";
16 const char kEventLoadCommit[] = "webview.onLoadCommit";
17 const char kEventLoadProgress[] = "webview.onLoadProgress"
    [all...]
  /external/chromium_org/chrome/browser/resources/identity_scope_approval_dialog/
scope_approval_dialog.js 5 var webview; variable
8 * Points the webview to the starting URL of a scope authorization
16 // Send popups from the webview to a normal browser window.
17 webview.addEventListener('newwindow', function(e) {
23 webview.request.onBeforeSendHeaders.addListener(function(details) {
35 webview.src = url;
37 webview.addEventListener('loadstop', function() {
44 webview = document.querySelector('webview');
  /external/chromium/webkit/glue/
context_menu_unittest.cc 15 #include "third_party/WebKit/Source/WebKit/chromium/public/WebView.h"
22 using WebKit::WebView;
60 WebView* webview = test_shell_->webView(); local
61 webview->handleInputEvent(mouse_event);
65 webview->handleInputEvent(mouse_event);
  /frameworks/webview/chromium/java/com/android/webview/chromium/
GraphicsUtils.java 17 package com.android.webview.chromium;
GeolocationPermissionsAdapter.java 17 package com.android.webview.chromium;
ResourceProvider.java 17 package com.android.webview.chromium;
UnimplementedWebViewApi.java 17 package com.android.webview.chromium;
21 // TODO: remove this when all WebView APIs have been implemented.
41 Log.w(TAG, "Unimplemented WebView method called in: " +
48 Log.w(TAG, "Unimplemented WebView method " + unimplementedMethod.getMethodName() +
WebBackForwardListChromium.java 17 package com.android.webview.chromium;
28 * WebView Chromium implementation of WebBackForwardList. Simple immutable
WebHistoryItemChromium.java 17 package com.android.webview.chromium;
25 * WebView Chromium implementation of WebHistoryItem. Simple immutable wrapper
WebIconDatabaseAdapter.java 17 package com.android.webview.chromium;
WebStorageAdapter.java 17 package com.android.webview.chromium;
WebViewDatabaseAdapter.java 17 package com.android.webview.chromium;
DrawGLFunctor.java 17 package com.android.webview.chromium;
CookieManagerAdapter.java 17 package com.android.webview.chromium;
117 // of the Classic WebView implementation that allowed embedders to
WebViewChromium.java 17 package com.android.webview.chromium;
53 import android.webkit.WebView;
82 * it). This class also contains WebView-specific APIs that require the creation of other
83 * adapters (otherwise org.chromium.content would depend on the webview.chromium package)
125 // The WebView that this WebViewChromium is the provider for.
126 WebView mWebView;
127 // Lets us access protected View-derived methods on the WebView instance we're backing.
128 WebView.PrivateAccess mWebViewPrivate;
134 // The WebView wrapper for ContentViewCore and required browser compontents.
136 // Non-null if this webview is using the GL accelerated draw path
    [all...]
  /frameworks/webview/chromium/tools/WebViewShell/src/com/android/webview/chromium/shell/
TelemetryActivity.java 17 package com.android.webview.chromium.shell;
22 import android.webkit.WebView;
34 WebView webView = (WebView) findViewById(R.id.webview);
36 webView.getSettings().setJavaScriptEnabled(true);
38 webView.setWebViewClient(new WebViewClient() {
40 public boolean shouldOverrideUrlLoading(WebView webView, String url)
    [all...]
  /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);
  /external/chromium_org/content/renderer/
text_input_client_observer.cc 16 #include "third_party/WebKit/public/web/WebView.h"
42 blink::WebView* TextInputClientObserver::webview() { function in class:content::TextInputClientObserver
48 size_t index = webview()->focusedFrame()->characterIndexForPoint(web_point);
61 blink::WebFrame* frame = webview()->focusedFrame();
75 blink::WebFrame* frame = webview()->focusedFrame();
  /packages/apps/Email/src/com/android/email/activity/setup/
DebugFragment.java 25 import android.webkit.WebView;
137 WebView webview = new WebView(getActivity()); local
139 webview.clearCache(true);
140 LogUtils.w(Logging.LOG_TAG, "Cleard WebView cache.");
142 webview.destroy();
  /external/chromium_org/chrome/test/chromedriver/chrome/
performance_logger_unittest.cc 63 const std::string id_; // WebView id.
129 std::string webview; local
130 EXPECT_TRUE(message->GetString("webview", &webview));
131 EXPECT_EQ(expected_webview, webview);
150 FakeDevToolsClient client("webview-1");
163 ValidateLogEntry(log.GetEntries()[0], "webview-1", "Network.gaga");
164 ValidateLogEntry(log.GetEntries()[1], "webview-1", "Page.ulala");
168 FakeDevToolsClient client1("webview-1");
169 FakeDevToolsClient client2("webview-2")
    [all...]
  /external/chromium_org/third_party/WebKit/Source/testing/runner/
EventSender.h 49 class WebView;
64 void setWebView(blink::WebView* webView) { m_webView = webView; }
155 blink::WebView* webview() { return m_webView; } function in class:WebTestRunner::EventSender
193 blink::WebView* m_webView;
  /external/chromium_org/android_webview/renderer/
aw_render_view_ext.cc 32 #include "third_party/WebKit/public/web/WebView.h"
41 // We treat non-standard schemes as "secure" in the WebView to allow them to
182 blink::WebView* webview = render_view()->GetWebView(); local
183 if (webview) {
185 webview->mainFrame()->document().images(images);
  /external/chromium_org/chrome/browser/devtools/
devtools_adb_bridge_browsertest.cc 307 scoped_refptr<DevToolsAdbBridge::RemoteBrowser> webview = local
308 FindBrowserByDisplayName(browsers, "WebView in com.sample.feed");
309 ASSERT_TRUE(webview);
317 ASSERT_EQ("4.0", webview->version());
324 webview->CreatePageTargets();
330 // Check that we have non-empty description for webview pages.

Completed in 1278 milliseconds

1 2 3