| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
|
|
|
|
| |
Exporting needed symbols from Android specific code.
Used NET_EXPORT for net code and BASE_API for other code.
Change-Id: Ief7426180eec993bbe894e7231b224dcac657c7b
|
|
|
|
|
|
| |
Check for JavaVM pointer being null before using it
Change-Id: I8fe404eaf716893dc88375c69383033a25277569
|
|
|
|
|
|
|
|
|
| |
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
|
|
|
|
|
|
|
|
|
|
| |
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
|
|
|
|
|
|
|
|
| |
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
|
|
|
|
|
|
|
|
|
|
| |
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
|
|
|
|
|
|
|
|
| |
Import OpenSSL support and tweak for our Chromium port (JNI functions).
See https://chromereview.prom.corp.google.com/2010002/
Change-Id: Ia081dd3b1eae5ec05ebb96b66b682f039bfa1b81
|
|
|
|
|
|
|
|
|
| |
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
|
|
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
|