summaryrefslogtreecommitdiffstats
path: root/android_webview/unittestjava
Commit message (Collapse)AuthorAgeFilesLines
* Fix Java indentation issues.aurimas2014-10-161-1/+1
| | | | | | | | | | Fix indentation issues to allow enabling Checkstyle indentation rule. BUG=318404 Review URL: https://codereview.chromium.org/663573002 Cr-Commit-Position: refs/heads/master@{#299975}
* [Checkstyle] Update class member variable names to match style guides.aurimas@chromium.org2014-08-081-3/+3
| | | | | | | | | | | | - Non-public, non-static field names start with m. http://source.android.com/source/code-style.html#follow-field-naming-conventions BUG=318404 Review URL: https://codereview.chromium.org/452613002 Cr-Commit-Position: refs/heads/master@{#288299} git-svn-id: svn://svn.chromium.org/chrome/trunk/src@288299 0039d316-1c4b-4281-b951-d872f2087c98
* Don't crash on InputStream exceptions in the android_webview.mkosiba@chromium.org2014-07-291-0/+26
| | | | | | | | | | | | The InputStream methods can, under normal operation, throw an IOException. If such a stream is being read by the WebView it will crash. This change addresses that by introducing a wrapper class that deals with the exceptions. BUG=157880 Review URL: https://codereview.chromium.org/430443003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@286214 0039d316-1c4b-4281-b951-d872f2087c98
* Add client cert support to android_webviewsgurun@chromium.org2014-04-221-0/+59
| | | | | | | | | | | | | This CL implements client certs backend for android_webview. Most of the code path is similar to how chrome handles client certs. the callbacks are eventually plumbed to webview as APIs. We still need to answer the question that if ClientCert cache is needed at the android_webview layer. BUG=b/12983007 TBR=jcivelli@chromium.org Review URL: https://codereview.chromium.org/235563005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@265380 0039d316-1c4b-4281-b951-d872f2087c98
* Fixing all Java import ordering issues.aurimas@chromium.org2013-12-101-1/+0
| | | | | | | | | | BUG=320711 TBR=isherman@chromium.org NOTRY=true Review URL: https://codereview.chromium.org/110963003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@239823 0039d316-1c4b-4281-b951-d872f2087c98
* Fixing Java style issues in android_webview.aurimas@chromium.org2013-12-101-25/+25
| | | | | | | | | BUG=320711 NOTRY=true Review URL: https://codereview.chromium.org/98853009 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@239661 0039d316-1c4b-4281-b951-d872f2087c98
* [android_webview] Don't block the IO thread when reading from an InputStream.mkosiba@chromium.org2012-11-221-0/+40
This breaks up the functionality in the AndroidStreamReader..Job into three separate classes, adds native unittests and makes the Job read the InputStream on a background thread. This change adds a separate unittestjava folder because the code under javatests can't be compiled to be a part of a native unittest APK due to resource dependencies. TEST=AndroidWebviewTests,android_webview_unittests BUG=None Review URL: https://codereview.chromium.org/11363123 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@169274 0039d316-1c4b-4281-b951-d872f2087c98