Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
F
Flutter Inappwebview
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
李增强
Flutter Inappwebview
Commits
e0b384bc
Commit
e0b384bc
authored
5 years ago
by
Lorenzo Pichilli
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
updated ProtectionSpaceHttpAuthCredentials doc
parent
9743687e
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
2 deletions
+5
-2
android/src/main/java/com/pichillilorenzo/flutter_inappwebview/InAppWebViewFlutterPlugin.java
...renzo/flutter_inappwebview/InAppWebViewFlutterPlugin.java
+0
-2
lib/src/types.dart
lib/src/types.dart
+5
-0
No files found.
android/src/main/java/com/pichillilorenzo/flutter_inappwebview/InAppWebViewFlutterPlugin.java
View file @
e0b384bc
...
...
@@ -35,8 +35,6 @@ public class InAppWebViewFlutterPlugin implements FlutterPlugin, ActivityAware {
public
InAppWebViewFlutterPlugin
()
{}
public
static
void
registerWith
(
PluginRegistry
.
Registrar
registrar
)
{
Log
.
d
(
LOG_TAG
,
"\n\n\nregisterWith\n\n\n"
);
final
InAppWebViewFlutterPlugin
instance
=
new
InAppWebViewFlutterPlugin
();
Shared
.
registrar
=
registrar
;
instance
.
onAttachedToEngine
(
...
...
This diff is collapsed.
Click to expand it.
lib/src/types.dart
View file @
e0b384bc
...
...
@@ -874,8 +874,13 @@ class HttpAuthCredential {
}
}
///Class that represents a [ProtectionSpace] with all of its [HttpAuthCredential]s.
///It used by [HttpAuthCredentialDatabase.getAllAuthCredentials].
class
ProtectionSpaceHttpAuthCredentials
{
///The protection space.
ProtectionSpace
protectionSpace
;
///The list of all its http authentication credentials.
List
<
HttpAuthCredential
>
credentials
;
ProtectionSpaceHttpAuthCredentials
({
this
.
protectionSpace
,
this
.
credentials
});
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment