-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
SONARKT-569 Add support for WebViews to S4830
- Loading branch information
1 parent
7b3e10b
commit 42d89ca
Showing
10 changed files
with
581 additions
and
20 deletions.
There are no files selected for viewing
4 changes: 4 additions & 0 deletions
4
kotlin-checks-test-sources/src/main/java/android/net/http/SslCertificate.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
package android.net.http; | ||
|
||
public class SslCertificate { | ||
} |
7 changes: 7 additions & 0 deletions
7
kotlin-checks-test-sources/src/main/java/android/net/http/SslError.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
package android.net.http; | ||
|
||
public class SslError { | ||
public SslCertificate getCertificate () { | ||
return new SslCertificate(); | ||
} | ||
} |
4 changes: 4 additions & 0 deletions
4
kotlin-checks-test-sources/src/main/java/android/os/Handler.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
package android.os; | ||
|
||
public class Handler { | ||
} |
5 changes: 0 additions & 5 deletions
5
kotlin-checks-test-sources/src/main/java/android/os/Handler.kt
This file was deleted.
Oops, something went wrong.
10 changes: 10 additions & 0 deletions
10
kotlin-checks-test-sources/src/main/java/android/webkit/SslErrorHandler.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
package android.webkit; | ||
|
||
import android.os.Handler; | ||
|
||
public class SslErrorHandler extends Handler { | ||
public void cancel() { | ||
} | ||
public void proceed() { | ||
} | ||
} |
8 changes: 8 additions & 0 deletions
8
kotlin-checks-test-sources/src/main/java/android/webkit/WebViewClient.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
package android.webkit; | ||
|
||
import android.net.http.SslError; | ||
|
||
public class WebViewClient { | ||
public void onReceivedSslError (WebView view, SslErrorHandler handler, SslError error) { | ||
} | ||
} |
Oops, something went wrong.