mirror of
https://gitee.com/openharmony/arkui_ace_engine
synced 2024-11-23 23:21:05 +00:00
fix asan build failure
Signed-off-by: cuitengfei <cuitengfei3@huawei.com> Change-Id: I4a8fb42190603e9b26124983322a779b814fc26b
This commit is contained in:
parent
6612bf8728
commit
07ba327b3c
@ -238,6 +238,7 @@
|
||||
OHOS::Ace::ParseFontFeatureSettings*;
|
||||
OHOS::Ace::StorageProxy::*;
|
||||
OHOS::Ace::EnvironmentProxy::*;
|
||||
OHOS::Ace::AceScoringLog::*;
|
||||
|
||||
virtual?thunk?to?OHOS::Ace::Animator::~Animator??;
|
||||
virtual?thunk?to?OHOS::Ace::Frontend::MaybeRelease*;
|
||||
|
@ -26,7 +26,7 @@
|
||||
|
||||
namespace OHOS::Ace {
|
||||
|
||||
class ACE_EXPORT AceScoringLog final {
|
||||
class ACE_FORCE_EXPORT AceScoringLog final {
|
||||
public:
|
||||
explicit AceScoringLog(const std::string& eventName);
|
||||
AceScoringLog(const std::string& pageName, const std::string& componentType, const std::string& procType);
|
||||
|
@ -142,7 +142,6 @@ template("cj_frontend") {
|
||||
"interfaces/cj_ffi/cj_relative_container_ffi.cpp",
|
||||
"interfaces/cj_ffi/cj_richeditor_controller_ffi.cpp",
|
||||
"interfaces/cj_ffi/cj_richeditor_ffi.cpp",
|
||||
"interfaces/cj_ffi/cj_richtext_ffi.cpp",
|
||||
"interfaces/cj_ffi/cj_row_ffi.cpp",
|
||||
"interfaces/cj_ffi/cj_row_split_ffi.cpp",
|
||||
"interfaces/cj_ffi/cj_scroll_ffi.cpp",
|
||||
@ -202,7 +201,6 @@ template("cj_frontend") {
|
||||
sources -= [
|
||||
"interfaces/cj_ffi/cj_richeditor_controller_ffi.cpp",
|
||||
"interfaces/cj_ffi/cj_richeditor_ffi.cpp",
|
||||
"interfaces/cj_ffi/cj_richtext_ffi.cpp",
|
||||
"interfaces/cj_ffi/state_manage/cj_environment.cpp",
|
||||
"interfaces/cj_ffi/state_manage/cj_persistent_storage_ffi.cpp",
|
||||
]
|
||||
@ -213,6 +211,12 @@ template("cj_frontend") {
|
||||
"interfaces/cj_ffi/state_manage/mock/cj_state_manage_mock.cpp",
|
||||
]
|
||||
}
|
||||
|
||||
if (defined(config.web_components_support) &&
|
||||
config.web_components_support) {
|
||||
sources += [ "interfaces/cj_ffi/cj_richtext_ffi.cpp" ]
|
||||
}
|
||||
|
||||
if (defined(config.video_components_support) &&
|
||||
config.video_components_support) {
|
||||
sources += [ "interfaces/cj_ffi/cj_video_ffi.cpp" ]
|
||||
|
@ -65,7 +65,7 @@ public:
|
||||
RefPtr<StepperItemComponent> GetStepperItemComponent();
|
||||
RefPtr<DisplayComponent> GetStepperDisplayComponent();
|
||||
RefPtr<ScrollComponent> GetStepperScrollComponent();
|
||||
ACE_FORCE_EXPORT RefPtr<BoxComponent> GetBoxComponent();
|
||||
RefPtr<BoxComponent> GetBoxComponent();
|
||||
RefPtr<Component> GetMainComponent() const;
|
||||
RefPtr<DisplayComponent> GetDisplayComponent();
|
||||
bool HasDisplayComponent() const;
|
||||
@ -81,9 +81,9 @@ public:
|
||||
RefPtr<GestureComponent> GetGestureComponent();
|
||||
RefPtr<PositionedComponent> GetPositionedComponent();
|
||||
RefPtr<ComposedComponent> GetRootComponent(const std::string& id = "", const std::string& name = "");
|
||||
ACE_FORCE_EXPORT RefPtr<PageTransitionComponent> GetPageTransitionComponent();
|
||||
RefPtr<PageTransitionComponent> GetPageTransitionComponent();
|
||||
RefPtr<CoverageComponent> GetCoverageComponent();
|
||||
ACE_FORCE_EXPORT void ClearPageTransitionComponent();
|
||||
void ClearPageTransitionComponent();
|
||||
RefPtr<MenuComponent> GetMenuComponent(bool createNewComponent = true);
|
||||
#ifndef WEARABLE_PRODUCT
|
||||
RefPtr<PopupComponentV2> GetPopupComponent(bool createNewComponent = true);
|
||||
|
Loading…
Reference in New Issue
Block a user