Skip to content

Commit 64f3211

Browse files
committed
Document undocumented public APIs
1 parent 2315735 commit 64f3211

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

shell/platform/tizen/public/flutter_tizen.h

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -77,21 +77,29 @@ FlutterDesktopGetPluginRegistrar(FlutterDesktopEngineRef engine,
7777
FLUTTER_EXPORT FlutterDesktopMessengerRef
7878
FlutterDesktopEngineGetMessenger(FlutterDesktopEngineRef engine);
7979

80+
// Posts a locale change notification to the engine instance.
8081
FLUTTER_EXPORT void FlutterDesktopNotifyLocaleChange(
8182
FlutterDesktopEngineRef engine);
8283

84+
// Posts a low memory notification to the engine instance.
8385
FLUTTER_EXPORT void FlutterDesktopNotifyLowMemoryWarning(
8486
FlutterDesktopEngineRef engine);
8587

88+
// Notifies the engine that the app is in an inactive state and not receiving
89+
// user input.
8690
FLUTTER_EXPORT void FlutterDesktopNotifyAppIsInactive(
8791
FlutterDesktopEngineRef engine);
8892

93+
// Notifies the engine that the app is visible and responding to user input.
8994
FLUTTER_EXPORT void FlutterDesktopNotifyAppIsResumed(
9095
FlutterDesktopEngineRef engine);
9196

97+
// Notifies the engine that the app is not currently visible to the user, not
98+
// responding to user input, and running in the background.
9299
FLUTTER_EXPORT void FlutterDesktopNotifyAppIsPaused(
93100
FlutterDesktopEngineRef engine);
94101

102+
// Notifies the engine that the engine is detached from any host views.
95103
FLUTTER_EXPORT void FlutterDesktopNotifyAppIsDetached(
96104
FlutterDesktopEngineRef engine);
97105

0 commit comments

Comments
 (0)