Home
last modified time | relevance | path

Searched refs:embedId (Results 1 – 13 of 13) sorted by relevance

/ohos5.0/docs/zh-cn/application-dev/web/
H A Dweb-same-layer.md256 this.embedId_ = params.embedId;
326 }, (embedId: string) => embedId)
346 embedId : embed.embedId as string,
401 }, (embedId: string) => embedId)
468 embedId: string
487 this.embedId_ = params.embedId;
591 }, (embedId: string) => embedId)
609 embedId : embed.embedId as string,
693 embedId : string
815 }, (embedId: string) => embedId)
[all …]
H A Dapp-takeovers-web-media.md903 if (!event.touchEvent || !event.embedId) {
907 console.log(`WebComponent.onNativeEmbedGestureEvent, embedId[${event.embedId}]`);
908 let native_player_info = this.getNativePlayerInfoByEmbedId(event.embedId);
910 …console.log(`WebComponent.onNativeEmbedGestureEvent, embedId[${event.embedId}], no native_player_i…
915 …console.log(`WebComponent.onNativeEmbedGestureEvent, embedId[${event.embedId}], no node_controller…
933 getNativePlayerInfoByEmbedId(embedId: string) : NativePlayerInfo | undefined {
934 return this.native_player_info_list.find((item)=> item.embed_id == embedId);
/ohos5.0/docs/zh-cn/application-dev/performance/
H A Dwebview-render-app-components.md318 private embedId: string = ""; // 当前的embedId
330 this.embedId = params.embedId;
392 embedId: embed.embedId as string,
/ohos5.0/docs/en/application-dev/web/
H A Dweb-same-layer.md256 this.embedId_ = params.embedId;
326 }, (embedId: string) => embedId)
346 embedId : embed.embedId as string,
401 }, (embedId: string) => embedId)
468 embedId: string
487 this.embedId_ = params.embedId;
591 }, (embedId: string) => embedId)
609 embedId : embed.embedId as string,
693 embedId : string
815 }, (embedId: string) => embedId)
[all …]
H A Dapp-takeovers-web-media.md903 if (!event.touchEvent || !event.embedId) {
907 console.log(`WebComponent.onNativeEmbedGestureEvent, embedId[${event.embedId}]`);
908 let native_player_info = this.getNativePlayerInfoByEmbedId(event.embedId);
910 …console.log(`WebComponent.onNativeEmbedGestureEvent, embedId[${event.embedId}], no native_player_i…
915 …console.log(`WebComponent.onNativeEmbedGestureEvent, embedId[${event.embedId}], no node_controller…
933 getNativePlayerInfoByEmbedId(embedId: string) : NativePlayerInfo | undefined {
934 return this.native_player_info_list.find((item)=> item.embed_id == embedId);
/ohos5.0/base/web/webview/interfaces/kits/napi/webviewcontroller/
H A Dnative_media_player_impl.cpp438 napi_value embedId = nullptr; in ConstructMediaInfo() local
440 NAPI_CALL_RETURN_VOID(env_, napi_create_string_utf8(env_, id.c_str(), id.length(), &embedId)); in ConstructMediaInfo()
441 NAPI_CALL_RETURN_VOID(env_, napi_set_named_property(env_, *value, "embedID", embedId)); in ConstructMediaInfo()
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components/web/resource/
H A Dweb_delegate.cpp6474 std::string embedId = dataInfo->GetEmbedId(); in OnNativeEmbedAllDestory() local
6487 std::make_shared<NativeEmbedDataInfo>(status, surfaceId, embedId, info)); in OnNativeEmbedAllDestory()
6500 std::string embedId; in OnNativeEmbedLifecycleChange() local
6504 embedId = dataInfo->GetEmbedId(); in OnNativeEmbedLifecycleChange()
6517 embedDataInfo_.insert_or_assign(embedId, dataInfo); in OnNativeEmbedLifecycleChange()
6519 auto iter = embedDataInfo_.find(embedId); in OnNativeEmbedLifecycleChange()
6529 [weak = WeakClaim(this), status, surfaceId, embedId, info]() { in OnNativeEmbedLifecycleChange()
6572 auto embedId = event ? event->GetEmbedId() : ""; in OnNativeEmbedGestureEvent() local
6579 [weak = WeakClaim(this), embedId, touchEventInfo, param, type]() { in OnNativeEmbedGestureEvent()
7013 Offset WebDelegate::GetPosition(const std::string& embedId) in GetPosition() argument
[all …]
H A Dweb_delegate.h970 Offset GetPosition(const std::string& embedId);
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/event/
H A Dtouch_event.h1036 NativeEmbeadTouchInfo(const std::string& embedId, in NativeEmbeadTouchInfo() argument
1039 …: BaseEventInfo("NativeEmbeadTouchInfo"), embedId_(embedId), touchEvent_(touchEventInfo), result_(… in NativeEmbeadTouchInfo()
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components/web/
H A Dweb_event.h1849 const std::string& embedId, const EmbedInfo& embedInfo) in DECLARE_RELATIONSHIP_OF_CLASSES()
1851 surfaceId_(surfaceId), embedId_(embedId), embedInfo_(embedInfo) {} in DECLARE_RELATIONSHIP_OF_CLASSES()
/ohos5.0/docs/zh-cn/application-dev/reference/apis-arkweb/
H A Dts-basic-components-web.md5973 console.log("embedId = " + event.embedId);
6133 console.log("embedId = " + event.embedId);
6623 console.log("embedId = " + embed.embedId);
9273 | embedId | string | 否 | 同层标签的唯一id。 |
9284 | embedId | string | 否 | 同层标签的唯一id。 |
9952 | embedId | string | 是 | 同层渲染标签的唯一id。 |
/ohos5.0/docs/en/application-dev/reference/apis-arkweb/
H A Dts-basic-components-web.md5973 console.log("embedId = " + event.embedId);
6133 console.log("embedId = " + event.embedId);
6623 console.log("embedId = " + embed.embedId);
9269 | embedId | string | No | Unique ID of the same-layer tag. |
9280 | embedId | string | No | Unique ID of the same-layer tag.|
9948 | embedId | string | Yes | ID of the same-layer rendering ta…
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/web/
H A Dweb_pattern.cpp6423 TouchEventInfo& touchEventInfo, const std::string& embedId) in SetTouchEventInfo() argument
6442 auto pos = delegate_->GetPosition(embedId); in SetTouchEventInfo()