summaryrefslogtreecommitdiffstats
path: root/android/jni
Commit message (Collapse)AuthorAgeFilesLines
* Part of fix for bug 5455901 Export symbols in android/Kristian Monsen2011-10-211-1/+2
| | | | | | | | Exporting needed symbols from Android specific code. Used NET_EXPORT for net code and BASE_API for other code. Change-Id: Ief7426180eec993bbe894e7231b224dcac657c7b
* Fix for bug 5105584Kristian Monsen2011-08-031-2/+4
| | | | | | Check for JavaVM pointer being null before using it Change-Id: I8fe404eaf716893dc88375c69383033a25277569
* Part of fix for 5065047: build libchromium as a shared libKristian Monsen2011-07-285-32/+82
| | | | | | | | | Linking chromium_net as a static lib. Needed to update the jni to be handled internally instead of using the one from webkit it got linked with. Change-Id: Ia717a29afa879be39835d22faacb6c4810728b53
* Query the platform for the Autofill server URL.Ben Murdoch2011-07-212-0/+44
| | | | | | | | | | The URL to use to make autofill requests is now configured by the platform. Add a JNI call to retrieve it. See also frameworks/base change I0aa85c5bef834b1120baaabdc2dd2e4e607a63b6 Bug: 4515820 Change-Id: I3a22ae42402f52207eee2d0d9df64700cb7c9f45
* Renamed JavaInputStreamWrapper to JavaISWrapperKristian Monsen2011-01-142-6/+6
| | | | | | | | The linker confused this class with another class in WebKit with the same name. This caused a crash in the CTS tests. Change-Id: I6fbdd105d24d27496ae8c26a7028c0f9e19bb485
* Uploads for content uri'sKristian Monsen2011-01-132-0/+91
| | | | | | | | | | Looking for content:// uri when doing file uploads. If it is a content file, use the android jni methods instead of file operations. Fix for bug 2862096 Change-Id: Ice5047e85878aadc17c0994186dc7aa74ca63322
* Merge Chromium at r65505: OpenSSL supportBen Murdoch2010-11-192-0/+24
| | | | | | | | Import OpenSSL support and tweak for our Chromium port (JNI functions). See https://chromereview.prom.corp.google.com/2010002/ Change-Id: Ia081dd3b1eae5ec05ebb96b66b682f039bfa1b81
* Implement l10n_util functions needed for AutoFill previews.Ben Murdoch2010-10-292-0/+9
| | | | | | | | | Generating an autofill preview uses localisation strings to work out how the preview should be formatted appropriate for the current users locale. On Android, call through JNI and look up the relevant string from the resources file. Change-Id: I74158278757d88cfeab407c13e69e6f4cf138630
* Add Android MIME types to Chrome HTTP stack.Iain Merrick2010-10-224-0/+141
This is needed for loading webarchive files, because Android needs to have the MIME type set correctly. I've uncommented the calls to PlatformMimeUtil, and implemented this class by calling through to libcore.net.MimeUtils. To test, save google.com as a web archive. This should be saved as /sdcard/Download/index.webarchivexml. Then run this command: adb shell am start \ -d file:///sdcard/Download/index.webarchivexml \ -n com.android.browser/.BrowserActivity \ -a android.intent.action.VIEW The browser should load the archived google.com. Change-Id: I26b3700eb3ec793d8c0602feeb36aea2be9cd23e