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

1 2 3 4 5 6

  /frameworks/webview/chromium/java/com/android/webview/chromium/
GraphicsUtils.java 17 package com.android.webview.chromium;
ResourceRewriter.java 17 package com.android.webview.chromium;
31 // Rewrite the R 'constants' for the WebView library apk.
39 // The resources are always called com.android.webview even if the manifest has had the
41 if ("com.android.webview".equals(name)) {
47 com.android.webview.chromium.R.onResourcesLoaded(id);
  /external/chromium_org/ui/views/controls/webview/
webview_interactive_uitest.cc 5 #include "ui/views/controls/webview/webview.h"
47 // Create a top level widget and a webview as its content.
49 views::WebView* webview = new views::WebView(browser_context()); local
50 widget->SetContentsView(webview);
52 webview->RequestFocus();
57 EXPECT_EQ(null_text_input_client, webview->GetTextInputClient());
59 webview->GetTextInputClient())
    [all...]
  /external/chromium_org/chrome/browser/resources/gaia_auth/
main.css 19 webview {
  /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');
  /frameworks/webview/chromium/tools/
webview_command_line 17 CMD_LINE_FILE=/data/local/tmp/webview-command-line
20 # If nothing specified, print the command line (stripping off "webview").
29 adb shell "echo 'webview $*' > $CMD_LINE_FILE"
  /external/chromium_org/chrome/renderer/resources/extensions/
web_view_deny.js 7 // Output error message to console when using the <webview> tag with no
9 var errorMessage = "You do not have permission to use the webview element." +
10 " Be sure to declare the 'webview' permission in your manifest file.";
12 // Registers <webview> custom element.
20 window.WebView =
21 DocumentNatives.RegisterElement('webview', {prototype: proto});
web_view_events.js 15 var WebView = require('webview').WebView;
22 var FrameNameChangedEvent = CreateEvent('webview.onFrameNameChanged');
23 var WebRequestMessageEvent = CreateEvent('webview.onMessage');
25 // WEB_VIEW_EVENTS is a map of stable <webview> DOM event names to their
30 // accessible to <webview> developers.
41 evt: CreateEvent('webview.onClose'),
45 evt: CreateEvent('webview.onConsoleMessage'),
49 evt: CreateEvent('webview.onContentLoad')
    [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/chrome/browser/extensions/api/webview/
webview_api.cc 5 #include "chrome/browser/extensions/api/webview/webview_api.h"
13 #include "chrome/common/extensions/api/webview.h"
24 using extensions::api::webview::SetPermission::Params;
26 namespace webview = extensions::api::webview;
63 scoped_ptr<webview::ContextMenusCreate::Params> params(
64 webview::ContextMenusCreate::Params::Create(*args_));
93 scoped_ptr<webview::Navigate::Params> params(
94 webview::Navigate::Params::Create(*args_));
102 scoped_ptr<webview::ContextMenusUpdate::Params> params
    [all...]
  /external/chromium_org/extensions/renderer/resources/
platform_app.css 18 webview {
  /external/chromium_org/third_party/WebKit/Source/web/
EditorClientImpl.cpp 41 EditorClientImpl::EditorClientImpl(WebViewImpl* webview)
42 : m_webView(webview)
  /frameworks/webview/chromium/tools/WebViewShell/src/com/android/webview/chromium/shell/
JankActivity.java 17 package com.android.webview.chromium.shell;
23 import android.webkit.WebView;
27 * This activity is designed for Android Jank testing of WebView. It takes a URL as an argument, and
39 WebView webView = (WebView) findViewById(R.id.webview);
42 webView.setWebViewClient(new WebViewClient() {
44 public boolean shouldOverrideUrlLoading(WebView webView, String url)
    [all...]
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...]
  /external/chromium_org/content/renderer/
text_input_client_observer.h 15 class WebView;
34 // Returns the WebView of the RenderView.
35 blink::WebView* webview();
renderer_webapplicationcachehost_impl.cc 11 #include "third_party/WebKit/public/web/WebView.h"
33 if (!render_view || !render_view->webview() ||
34 !render_view->webview()->mainFrame())
37 blink::WebFrame* frame = render_view->webview()->mainFrame();
render_view_impl.cc 179 #include "third_party/WebKit/public/web/WebView.h"
300 using blink::WebView;
318 typedef std::map<blink::WebView*, RenderViewImpl*> ViewMap;
688 webwidget_ = WebView::create(this);
726 g_view_map.Get().insert(std::make_pair(webview(), this));
728 webview()->setDeviceScaleFactor(device_scale_factor_);
729 webview()->settings()->setAcceleratedCompositingForFixedPositionEnabled(
731 webview()->settings()->setAcceleratedCompositingForOverflowScrollEnabled(
733 webview()->settings()->setAcceleratedCompositingForTransitionEnabled(
735 webview()->settings()->setAcceleratedCompositingForFixedRootBackgroundEnabled
953 blink::WebView* RenderViewImpl::webview() const { function in class:content::RenderViewImpl
    [all...]
text_input_client_observer.cc 15 #include "third_party/WebKit/public/web/WebView.h"
44 blink::WebView* TextInputClientObserver::webview() { function in class:content::TextInputClientObserver
52 webview(), point, baselinePoint);
65 size_t index = webview()->focusedFrame()->characterIndexForPoint(web_point);
78 blink::WebFrame* frame = webview()->focusedFrame();
92 blink::WebLocalFrame* frame = webview()->focusedFrame()->toWebLocalFrame();
  /external/chromium_org/chrome/browser/guest_view/web_view/
web_view_find_helper.cc 9 #include "chrome/browser/extensions/api/webview/webview_api.h"
36 args->SetBoolean(webview::kFindCanceled, canceled);
37 args->SetBoolean(webview::kFindFinalUpdate, final_update);
40 new GuestViewBase::Event(webview::kEventFindReply, args.Pass()));
207 results->SetInteger(webview::kFindNumberOfMatches, number_of_matches_);
208 results->SetInteger(webview::kFindActiveMatchOrdinal, active_match_ordinal_);
210 rect.SetInteger(webview::kFindRectLeft, selection_rect_.x());
211 rect.SetInteger(webview::kFindRectTop, selection_rect_.y());
212 rect.SetInteger(webview::kFindRectWidth, selection_rect_.width());
213 rect.SetInteger(webview::kFindRectHeight, selection_rect_.height())
    [all...]
web_view_guest.cc 13 #include "chrome/browser/extensions/api/webview/webview_api.h"
129 return webview::kPermissionTypeDownload;
131 return webview::kPermissionTypeFileSystem;
133 return webview::kPermissionTypeGeolocation;
135 return webview::kPermissionTypeDialog;
137 return webview::kPermissionTypeLoadPlugin;
139 return webview::kPermissionTypeMedia;
141 return webview::kPermissionTypeNewWindow;
143 return webview::kPermissionTypePointerLock;
153 return (persist_storage ? webview::kPersistPrefix : "") + partition_id
    [all...]
javascript_dialog_helper.cc 51 webview::kDefaultPromptText,
54 webview::kMessageText,
57 webview::kMessageType,
plugin_permission_helper.cc 71 WebViewGuest* webview = WebViewGuest::FromWebContents(web_contents()); local
72 if (!webview)
78 webview->RequestPermission(
86 base::UserMetricsAction("WebView.Guest.PluginLoadRequest"));
  /packages/apps/UnifiedEmail/src/com/android/mail/ui/
LicensesActivity.java 22 import android.webkit.WebView;
58 // encode the license string for display as HTML in the webview
72 // set the license HTML into the webview
73 final WebView webview = (WebView) findViewById(R.id.webview); local
74 webview.loadData(licenseHTML, "text/html", null);
  /build/target/product/
core_minimal.mk 75 webview \
79 frameworks/native/data/etc/android.software.webview.xml:system/etc/permissions/android.software.webview.xml
  /cts/tests/tests/webkit/src/android/webkit/cts/
WebBackForwardListTest.java 24 import android.webkit.WebView;
40 WebView webview = getActivity().getWebView(); local
41 if (webview != null) {
42 mOnUiThread = new WebViewOnUiThread(this, webview);

Completed in 6281 milliseconds

1 2 3 4 5 6