/base/web/webview/test/fuzztest/loadwithdataandbaseurl_fuzzer/ |
H A D | loadwithdataandbaseurl_fuzzer.cpp | 36 const std::string historyUrl; in LoadWithDataAndBaseUrlFuzzTest() local 37 g_nweb->LoadWithDataAndBaseUrl(baseUrl, datas, mimeType, encoding, historyUrl); in LoadWithDataAndBaseUrlFuzzTest()
|
/base/web/webview/interfaces/kits/cj/include/ |
H A D | webview_utils.h | 38 char* historyUrl; member
|
H A D | webview_controller_impl.h | 90 std::string historyUrl);
|
/base/web/webview/test/fuzztest/ohos_nweb/nwebhelper_fuzzer/ |
H A D | nweb_create_window.h | 129 const std::string& encoding, const std::string& historyUrl) override
|
/base/web/webview/test/unittest/common/ |
H A D | nweb_create_window.h | 163 const std::string& historyUrl) override
|
/base/web/webview/interfaces/kits/cj/src/ |
H A D | webview_controller_impl.cpp | 195 std::string baseUrl, std::string historyUrl) in LoadData() 201 if (baseUrl.empty() && historyUrl.empty()) { in LoadData() 204 return nweb_ptr->LoadWithDataAndBaseUrl(baseUrl, data, mimeType, encoding, historyUrl); in LoadData() 194 LoadData(std::string data, std::string mimeType, std::string encoding, std::string baseUrl, std::string historyUrl) LoadData() argument
|
H A D | webview_ffi.cpp | 159 std::string historyUrl = loadDatas.cHistoryUrl; in FfiOHOSWebviewCtlLoadData() local 160 return nativeWebviewCtl->LoadData(data, mimeType, encoding, baseUrl, historyUrl); in FfiOHOSWebviewCtlLoadData() 1145 CHistoryItem ret = {.icon = -1, .historyUrl = nullptr, .historyRawUrl = nullptr, .title = nullptr}; in FfiOHOSGetItemAtIndex() 1160 ret.historyUrl = MallocCString(item->GetHistoryUrl()); in FfiOHOSGetItemAtIndex()
|
/base/web/webview/interfaces/kits/napi/webviewcontroller/ |
H A D | webview_controller.h | 197 std::string baseUrl, std::string historyUrl);
|
H A D | webview_controller.cpp | 742 std::string baseUrl, std::string historyUrl) in LoadData() 748 if (baseUrl.empty() && historyUrl.empty()) { in LoadData() 751 return nweb_ptr->LoadWithDataAndBaseUrl(baseUrl, data, mimeType, encoding, historyUrl); in LoadData() 741 LoadData(std::string data, std::string mimeType, std::string encoding, std::string baseUrl, std::string historyUrl) LoadData() argument
|
H A D | napi_webview_controller.cpp | 2978 std::string historyUrl; in LoadData() local 2989 if ((argc == INTEGER_FIVE) && !NapiParseUtils::ParseString(env, argv[INTEGER_FOUR], historyUrl)) { in LoadData() 2993 ErrCode ret = webviewController->LoadData(data, mimeType, encoding, baseUrl, historyUrl); in LoadData() 3870 std::string historyUrl = item->GetHistoryUrl(); in GetItem() local 3875 napi_create_string_utf8(env, historyUrl.c_str(), historyUrl.length(), &js_historyUrl); in GetItem() 3876 napi_set_named_property(env, result, "historyUrl", js_historyUrl); in GetItem()
|
/base/web/webview/ohos_interface/include/ohos_nweb/ |
H A D | nweb.h | 517 * applying JavaScript's same origin policy. The historyUrl is used for the 527 * @param historyUrl String: the URL to use as the history entry. If null 532 const std::string& encoding, const std::string& historyUrl) = 0;
|