summaryrefslogtreecommitdiffstats
path: root/core/java/android/webkit/BrowserFrame.java
Commit message (Collapse)AuthorAgeFilesLines
* Add request header support for the Browser/WebView.Grace Kloba2010-01-271-5/+8
| | | | | | | | | | | | | | QSB can use this instead of POST to send the location data. After QSB makes the switch, we should also remove the POST_DATA intent which is hidden. Add loadUrl(String url, HashMap extraHeaders) to WebView so that the caller can send the extra http headers. Remove "inline:" as no one is using it and it is a hidden feature. Part 1 of 3-project checkin.
* Address the multiple resizing during initializingGrace Kloba2009-12-201-0/+1
| | | | | | | problem adobe run into. When a child view is created, we first hide it if the webview is not ready to draw yet. This will avoid the multiple resizing notification.
* Provide localized strings for <input> labels.Leon Scroggins2009-12-151-1/+16
| | | | | | | | | Fix for http://b/issue?id=2178786 Provide strings for input types file, submit, and reset, and allow them to be passed down to native. Requires a change in external/webkit.
* Listen for window orientation events.Patrick Scott2009-12-091-0/+40
| | | | These will be sent to webcore as orientation events.
* Check if another Activity wants to intercept an xml mime type.Patrick Scott2009-12-041-2/+5
| | | | | | | | | | | WebCore treats */*+xml as content that it can render. This prevents Activities from intercepting those mime types. Check the same regular expression as DOMImplementation and then use the PackageManager to look for a matching Activity. Requires a change to webcore. Bug: 2256744
* Fix a leak in WebView.Romain Guy2009-12-011-6/+9
| | | | | | | | Fixes #2296601. WebView and its related APIs are keeping static objects that hold references to Context instance. This could cause applications to leak their first Activity and all the associated resources.
* Add postdata identifier so that if we cache the postGrace Kloba2009-11-081-2/+4
| | | | | | | result, we will use (url+postIdentifier) as the key for the CacheResult. Fix http://b/issue?id=1980031
* Prevent getFile from copying when the file is too large.Leon Scroggins2009-10-131-2/+5
| | | | | | | Since the caller expects the data to fit within a certain amount of space, do not copy into the buffer if the data exceeds that space. Requires a change to external/webkit
* File upload.Leon Scroggins2009-10-091-0/+58
| | | | | | | | Implement java side of file upload. Requires changes to external/ webkit to not break; requires changes to packages/apps/Browser before it actually is used. Fix http://b/issue?id=675743
* Setting WebCore cache limit depending on the memory class.Grace Kloba2009-10-081-1/+8
| | | Fix http://b/issue?id=2176656
* Add a boolean indicating if the apple-touch-icon is precomposed.Patrick Scott2009-09-221-2/+2
|
* Support the new dpi change in the WebView.Grace Kloba2009-09-221-0/+4
| | | | Fix http://b/issue?id=2071943
* WebKit: switch to java-based CertTool.Chia-chi Yeh2009-09-181-1/+1
| | | | Change-Id: Ica6d491ede2bf2a311cacb7a7d64a249191fbecf
* WebView zoom clean upGrace Kloba2009-09-151-2/+0
|
* Remove the call to nativeAddJavascriptInterface() from ↵Andrei Popescu2009-09-091-2/+0
| | | | BrowserFrame::addJavascriptInterface() as it causes an intermitent crash.
* Fix appcache layout test that was timing out due to race condition in ↵Andrei Popescu2009-09-031-2/+6
| | | | WebView::addJavascriptInterface.
* Get drawable directory for the platform buttons.Grace Kloba2009-09-021-2/+18
| | | | Fix http://b/issue?id=2086818
* Check for a null history item to avoid crashing.Patrick Scott2009-08-241-11/+10
| | | | | | | The history item may be null if this page is loaded through loadDataWithBaseURL so we cannot count on the item being non-null. Bug: 2073490
* replace 'new String()' with ""Cary Clark2009-08-111-1/+1
| | | | | bug reported by findbugs http://b/issue?id=1856909
* As createCacheFile is called from WebCore instead of http thread now, removeGrace Kloba2009-08-061-11/+0
| | | | the endCacheTransaction/startTransaction pairs.
* Add a callback for the url of an apple-touch-icon.Patrick Scott2009-08-051-0/+5
| | | | | | Hide the apis until this is a well-tested feature. The url is reported rather than the actual icon since it may never be used. The apple-touch-icon is meant for shortcuts on the home screen.
* Fix 1986313. WebKit assumes things happened in a certain order. In this ↵Grace Kloba2009-07-171-3/+5
| | | | case, we can't call LoadListener's nativeError until BrowserFrame's startLoadingResource returns. Otherwise, the failed request will not be removed from the DocLoader's request list. So the page will never finish loading.
* Remove all our old high priority knowledge since WebCore will manage it.Patrick Scott2009-07-151-7/+3
| | | | Also removed an unused variable in RequestQueue.java.
* Centralized debug flags and enabled more granular control of debug settings.Derek Sollenberger2009-06-031-4/+4
|
* Added postUrl() to WebView so that we can pass lat/lon for the search.Grace Kloba2009-05-261-0/+13
|
* Added PluginManager to handle getting all the plugin directories from ↵Grace Kloba2009-05-141-0/+2
| | | | | | PackageManager. Deprecated the old api to set a single plugin path.
* Remove references to android.util.ConfigDave Bort2009-04-131-5/+4
| | | | | | | The semantics of Config.DEBUG will be changing soon, and all other Config.* fields will become deprecated/hidden. BUG=1780938
* auto import from //depot/cupcake/@136594The Android Open Source Project2009-03-051-4/+19
|
* auto import from //depot/cupcake/@135843The Android Open Source Project2009-03-031-0/+786
|
* auto import from //depot/cupcake/@135843The Android Open Source Project2009-03-031-786/+0
|
* auto import from //branches/cupcake/...@132276The Android Open Source Project2009-02-191-1/+1
|
* Code drop from //branches/cupcake/...@124589The Android Open Source Project2008-12-171-89/+94
|
* Initial ContributionThe Android Open Source Project2008-10-211-0/+781