Lines Matching defs:nwebId
98 WebviewController::WebviewController(int32_t nwebId) : nwebId_(nwebId)
102 g_webview_controller_map.emplace(nwebId, this);
117 void WebviewController::SetWebId(int32_t nwebId)
119 nwebId_ = nwebId;
121 g_webview_controller_map.emplace(nwebId, this);
143 WebviewController* WebviewController::FromID(int32_t nwebId)
146 if (auto it = g_webview_controller_map.find(nwebId); it != g_webview_controller_map.end()) {
509 WebMessagePort::WebMessagePort(int32_t nwebId, std::string& port, bool isExtentionType)
510 : nwebId_(nwebId), portHandle_(port), isExtentionType_(isExtentionType)