/frameworks/webview/chromium/tools/ |
memreport.py | 17 """WebView postprocessor for the go/memdump tool. 20 information for WebView analysis (both classic and chromium).
|
merge_to_master.py | 129 elif project == 'platform/frameworks/webview': 135 logging.info('Merging Chromium at r%s and WebView at %s', chromium_revision, 139 dest_dir = os.path.join(os.environ['ANDROID_BUILD_TOP'], 'frameworks/webview')
|
/packages/apps/Browser/src/com/android/browser/ |
DownloadTouchIcon.java | 39 import android.webkit.WebView; 61 public DownloadTouchIcon(Tab tab, Context ctx, ContentResolver cr, WebView view) {
|
NavigationBarBase.java | 31 import android.webkit.WebView; 129 WebView currentTopWebView = mUiController.getCurrentTopWebView();
|
Preloader.java | 22 import android.webkit.WebView; 171 public WebView getWebView() {
|
/packages/apps/UnifiedEmail/src/com/android/mail/ui/ |
SecureConversationViewFragment.java | 27 import android.webkit.WebView; 60 public void onPageFinished(WebView view, String url) {
|
/frameworks/base/docs/html/training/articles/ |
security-tips.jd | 14 <li><a href="#WebView">Using WebView</a></li> 291 validation of input in {@link android.webkit.WebView} and 415 <h2 id="WebView">Using WebView</h2> 417 <p>Because {@link android.webkit.WebView} consumes web content that can include HTML and JavaScript, 421 the scope of these potential issues by limiting the capability of {@link android.webkit.WebView} to 424 <p>If your application does not directly use JavaScript within a {@link android.webkit.WebView}, do 428 {@link android.webkit.WebView} does 431 <p>Use {@link android.webkit.WebView#addJavascriptInterfac [all...] |
/external/chromium_org/android_webview/java/src/org/chromium/android_webview/ |
AwScrollOffsetManager.java | 228 // the embedder overrides WebView#onScrollChanged without calling super.onScrollChanged. If 280 // public WebView#flingScroll(int, int) API. 345 * See {@link android.webkit.WebView#pageUp(boolean)} 365 * See {@link android.webkit.WebView#pageDown(boolean)} 384 * See {@link android.webkit.WebView#requestChildRectangleOnScreen(View, Rect, boolean)}
|
/external/chromium_org/android_webview/renderer/ |
print_web_view_helper.cc | 43 #include "third_party/WebKit/public/web/WebView.h" 50 // modified to run it with webview, and the modifications are marked 407 blink::WebView* FrameReference::view() { 434 blink::WebView* web_view = blink::WebView::create(NULL); 607 blink::WebView* web_view = frame_.view(); 619 blink::WebView* web_view = frame_.view(); 643 // Create a new WebView with the same settings as the current display one. 650 blink::WebView* web_view = blink::WebView::create(this) [all...] |
print_web_view_helper.h | 35 class WebView; 54 blink::WebView* view(); 57 blink::WebView* view_; 63 // of the document and creating a new WebView with the contents. 346 // WebView used only to print the selection.
|
/external/chromium_org/chrome/common/extensions/docs/templates/json/ |
chrome_sidenav.json | 320 "title": "CHROME WEBVIEW", 326 "title": "WebView for Android", 343 "title": "WebView Workflow", 520 "title": "Webview Tag", 521 "href": "/apps/webview.html"
|
/external/chromium_org/chrome/renderer/printing/ |
print_web_view_helper.h | 33 class WebView; 52 blink::WebView* view(); 55 blink::WebView* view_; 61 // of the document and creating a new WebView with the contents. 344 // WebView used only to print the selection.
|
print_web_view_helper.cc | 47 #include "third_party/WebKit/public/web/WebView.h" 405 blink::WebView* FrameReference::view() { 430 blink::WebView* web_view = blink::WebView::create(NULL); 602 blink::WebView* web_view = frame_.view(); 614 blink::WebView* web_view = frame_.view(); 638 // Create a new WebView with the same settings as the current display one. 645 blink::WebView* web_view = blink::WebView::create(this); 659 // Don't call callback here, because it can delete |this| and WebView that i [all...] |
/external/chromium_org/third_party/WebKit/Source/web/tests/ |
PopupMenuTest.cpp | 45 #include "WebView.h" 188 m_webView = toWebViewImpl(WebView::create(&m_webviewClient)); 200 // Returns true if there currently is a select popup in the WebView. 228 // Simulates a key event on the WebView. 229 // The WebView forwards the event to the select popup if one is open.
|
/external/chromium_org/chrome/browser/apps/ |
web_view_browsertest.cc | 285 // multiple webview tags. The tags have different partition identifiers and 292 // so the test can specify a configuration of WebView tags that we will 617 // happen when a <webview> is removed from DOM and added back. 637 // This test ensures <webview> doesn't crash in SW rendering when autosize is 683 // object, on the webview element, and hanging directly off webview. [all...] |
/external/chromium_org/chrome/renderer/searchbox/ |
searchbox_extension.cc | 25 #include "third_party/WebKit/public/web/WebView.h" 151 blink::WebView* webview = webframe->view(); 152 if (!webview) 154 content::RenderView* render_view = content::RenderView::FromWebView(webview); 167 blink::WebView* webview = render_view->GetWebView(); local 168 return webview ? GURL(webview->mainFrame()->document().url()) : GURL(); 595 blink::WebView* webview = webframe->view() [all...] |
/external/chromium_org/content/renderer/ |
render_frame_impl.cc | 56 #include "third_party/WebKit/public/web/WebView.h" 88 using blink::WebView; 235 if (render_view_->webview() && render_view_->webview()->mainFrame()) 236 active_url = GURL(render_view_->webview()->mainFrame()->document().url()); 779 // * webview 862 // * webview [all...] |
render_thread_impl.cc | 108 #include "third_party/WebKit/public/web/WebView.h" 151 using blink::WebView; 177 WebView* webview = render_view->GetWebView(); variable 178 WebDocument document = webview->mainFrame()->document(); 188 webview->setZoomLevel(zoom_level_); 319 blink::WebView::setUseExternalPopupMenus(true); 517 WebView::willEnterModalLoop(); 540 WebView::didExitModalLoop(); [all...] |
web_preferences.cc | 14 #include "third_party/WebKit/public/web/WebView.h" 24 using blink::WebView; 114 void ApplyWebPreferences(const WebPreferences& prefs, WebView* web_view) {
|
/external/chromium_org/chrome/browser/ui/cocoa/apps/ |
native_app_window_cocoa.mm | 782 NSView* webView = web_contents()->GetView()->GetNativeView(); 783 NSInteger webViewHeight = NSHeight([webView bounds]); 786 // Note that [webView subviews] returns the view's mutable internal array and 789 base::scoped_nsobject<NSArray> subviews([[webView subviews] copy]); 807 [webView addSubview:controlRegion]; 976 NSView* webView = web_contents()->GetView()->GetNativeView(); 977 NSInteger webViewHeight = NSHeight([webView bounds]); [all...] |
/external/chromium_org/chrome/browser/ui/views/ |
external_tab_container_win.h | 26 #include "ui/views/controls/webview/unhandled_keyboard_event_handler.h" 42 class WebView; 251 views::WebView* tab_contents_container_;
|
/external/chromium_org/chrome/common/extensions/api/ |
events.json | 119 "description": "If provided, this is an integer that uniquely identfies the <webview> associated with this function call." 158 "description": "If provided, this is an integer that uniquely identfies the <webview> associated with this function call." 197 "description": "If provided, this is an integer that uniquely identfies the <webview> associated with this function call."
|
/external/chromium_org/chrome/renderer/pepper/ |
pepper_pdf_host.cc | 32 #include "third_party/WebKit/public/web/WebView.h" 237 blink::WebView* view = 254 blink::WebView* view = element.document().frame()->view();
|
/frameworks/base/docs/html/sdk/api_diff/5/changes/ |
pkg_android.webkit.html | 183 <A NAME="WebView"></A> 184 <nobr><A HREF="android.webkit.WebView.html">WebView</A></nobr>
|
/frameworks/base/docs/html/sdk/api_diff/7/changes/ |
android.webkit.WebChromeClient.html | 135 <A NAME="android.webkit.WebChromeClient.onReceivedTouchIconUrl_added(android.webkit.WebView, java.lang.String, boolean)"></A> 136 <nobr><code>void</code> <A HREF="../../../../reference/android/webkit/WebChromeClient.html#onReceivedTouchIconUrl(android.webkit.WebView, java.lang.String, boolean)" target="_top"><code>onReceivedTouchIconUrl</code></A>(<code>WebView,</nobr> String<nobr>,</nobr> boolean<nobr><nobr></code>)</nobr>
|