Export extern constants in embedder.h (flutter/engine#8550)

PR #8498 made these constants extern, but forgot to export them so they
would be public symbols.
This commit is contained in:
stuartmorgan 2019-04-11 23:32:29 -07:00 committed by GitHub
parent a7a4e51078
commit 6956c8a88c

View File

@ -343,6 +343,7 @@ typedef struct {
// |FlutterSemanticsNode| ID used as a sentinel to signal the end of a batch of
// semantics node updates.
FLUTTER_EXPORT
extern const int32_t kFlutterSemanticsNodeIdBatchEnd;
// A node that represents some semantic data.
@ -414,6 +415,7 @@ typedef struct {
// |FlutterSemanticsCustomAction| ID used as a sentinel to signal the end of a
// batch of semantics custom action updates.
FLUTTER_EXPORT
extern const int32_t kFlutterSemanticsCustomActionIdBatchEnd;
// A custom semantics action, or action override.