code format
This commit is contained in:
parent
6906763796
commit
2f8fa22db4
|
@ -16,8 +16,7 @@ void onContentSizeChanged() {
|
|||
].contains(defaultTargetPlatform);
|
||||
|
||||
testWidgets('onContentSizeChanged', (WidgetTester tester) async {
|
||||
final Completer<void> onContentSizeChangedCompleter =
|
||||
Completer<void>();
|
||||
final Completer<void> onContentSizeChangedCompleter = Completer<void>();
|
||||
await tester.pumpWidget(
|
||||
Directionality(
|
||||
textDirection: TextDirection.ltr,
|
||||
|
|
|
@ -118,7 +118,7 @@ void onPermissionRequest() {
|
|||
controller.reload();
|
||||
|
||||
final List<PermissionResourceType> canceledResources =
|
||||
await onPermissionRequestCancelCompleter.future;
|
||||
await onPermissionRequestCancelCompleter.future;
|
||||
expect(listEquals(canceledResources, expectedValue), true);
|
||||
}, skip: shouldSkip2);
|
||||
}
|
||||
|
|
|
@ -8,8 +8,8 @@ void main() {
|
|||
final shouldSkip = kIsWeb
|
||||
? true
|
||||
: ![
|
||||
TargetPlatform.android,
|
||||
].contains(defaultTargetPlatform);
|
||||
TargetPlatform.android,
|
||||
].contains(defaultTargetPlatform);
|
||||
|
||||
group('Service Worker Controller', () {
|
||||
shouldInterceptRequest();
|
||||
|
|
|
@ -7,8 +7,8 @@ void main() {
|
|||
final shouldSkip = kIsWeb
|
||||
? true
|
||||
: ![
|
||||
TargetPlatform.android,
|
||||
].contains(defaultTargetPlatform);
|
||||
TargetPlatform.android,
|
||||
].contains(defaultTargetPlatform);
|
||||
|
||||
group('Tracing Controller', () {
|
||||
startAndStop();
|
||||
|
|
|
@ -55,9 +55,9 @@ void startAndStop() {
|
|||
await pageLoaded.future;
|
||||
|
||||
Directory appDocDir = await getApplicationDocumentsDirectory();
|
||||
String traceFilePath = '${appDocDir.path}${Platform.pathSeparator}trace.json';
|
||||
expect(
|
||||
await tracingController.stop(filePath: traceFilePath), true);
|
||||
String traceFilePath =
|
||||
'${appDocDir.path}${Platform.pathSeparator}trace.json';
|
||||
expect(await tracingController.stop(filePath: traceFilePath), true);
|
||||
|
||||
expect(File(traceFilePath).existsSync(), true);
|
||||
|
||||
|
|
|
@ -147,7 +147,8 @@ class TracingSettings_ {
|
|||
assert(
|
||||
this
|
||||
.categories
|
||||
.map((e) => e.runtimeType is String || e.runtimeType is TracingCategory)
|
||||
.map((e) =>
|
||||
e.runtimeType is String || e.runtimeType is TracingCategory)
|
||||
.contains(false),
|
||||
"categories must contain only String or TracingCategory items");
|
||||
}
|
||||
|
|
|
@ -684,8 +684,7 @@ class HeadlessInAppWebView implements WebView, Disposable {
|
|||
PermissionRequest permissionRequest)? onPermissionRequestCanceled;
|
||||
|
||||
@override
|
||||
final void Function(InAppWebViewController controller)?
|
||||
onRequestFocus;
|
||||
final void Function(InAppWebViewController controller)? onRequestFocus;
|
||||
|
||||
@override
|
||||
void Function(
|
||||
|
|
|
@ -558,8 +558,7 @@ class InAppWebView extends StatefulWidget implements WebView {
|
|||
PermissionRequest permissionRequest)? onPermissionRequestCanceled;
|
||||
|
||||
@override
|
||||
final void Function(InAppWebViewController controller)?
|
||||
onRequestFocus;
|
||||
final void Function(InAppWebViewController controller)? onRequestFocus;
|
||||
|
||||
@override
|
||||
final void Function(
|
||||
|
|
|
@ -863,8 +863,7 @@ abstract class WebView {
|
|||
///
|
||||
///**Supported Platforms/Implementations**:
|
||||
///- Android native WebView ([Official API - WebChromeClient.onRequestFocus](https://developer.android.com/reference/android/webkit/WebChromeClient#onRequestFocus(android.webkit.WebView)))
|
||||
final void Function(InAppWebViewController controller)?
|
||||
onRequestFocus;
|
||||
final void Function(InAppWebViewController controller)? onRequestFocus;
|
||||
|
||||
///Use [onWebContentProcessDidTerminate] instead.
|
||||
@Deprecated('Use onWebContentProcessDidTerminate instead')
|
||||
|
|
|
@ -224,4 +224,4 @@ export 'ui_image.dart' show UIImage;
|
|||
export 'activity_button.dart' show ActivityButton;
|
||||
export 'ui_event_attribution.dart' show UIEventAttribution;
|
||||
export 'tracing_mode.dart' show TracingMode;
|
||||
export 'tracing_category.dart' show TracingCategory;
|
||||
export 'tracing_category.dart' show TracingCategory;
|
||||
|
|
|
@ -28,7 +28,8 @@ class TracingCategory_ {
|
|||
|
||||
///Predefined set of categories for analyzing javascript and rendering issues.
|
||||
///Typically includes "blink", "compositor", "gpu", "renderer.scheduler" and "v8" categories.
|
||||
static const CATEGORIES_JAVASCRIPT_AND_RENDERING = const TracingCategory_._internal(32);
|
||||
static const CATEGORIES_JAVASCRIPT_AND_RENDERING =
|
||||
const TracingCategory_._internal(32);
|
||||
|
||||
///Indicates that there are no predefined categories.
|
||||
static const CATEGORIES_NONE = const TracingCategory_._internal(0);
|
||||
|
|
Loading…
Reference in New Issue