Skip to content
This repository was archived by the owner on Feb 25, 2025. It is now read-only.
Merged
Changes from 1 commit
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Better id doc
  • Loading branch information
dkwingsmt committed Dec 12, 2023
commit 300292401fea60fe740fa1788d3ec746305fdb74
9 changes: 3 additions & 6 deletions shell/platform/embedder/embedder.h
Original file line number Diff line number Diff line change
Expand Up @@ -266,13 +266,10 @@ typedef enum {

typedef struct _FlutterEngine* FLUTTER_API_SYMBOL(FlutterEngine);

/// Identifier for views.
/// Unique identifier for views.
///
/// How view IDs are generated is decided by the embedding. The engine does not
/// assume any specifics about the generation algorithm, including whether it
/// utilizes the entire range of int64_t or permits the use of zero or negative
/// IDs. The only requirement is that at any given moment, no two views share
/// the same ID.
/// View IDs are generated by the embedder and are
/// opaque to the engine; the engine does not interpret view IDs in any way.
typedef int64_t FlutterViewId;

typedef struct {
Expand Down