Home
last modified time | relevance | path

Searched refs:host_and_path (Results 1 – 6 of 6) sorted by relevance

/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/content/browser/webui/
H A Dweb_ui_browsertest.cc366 std::string host_and_path = "test-host/title2.html"; in IN_PROC_BROWSER_TEST_F() local
367 const GURL chrome_url(GetWebUIURL(host_and_path)); in IN_PROC_BROWSER_TEST_F()
385 {requestable_scheme, url::kStandardSchemeSeparator, host_and_path})); in IN_PROC_BROWSER_TEST_F()
392 {unrequestable_scheme, url::kStandardSchemeSeparator, host_and_path})); in IN_PROC_BROWSER_TEST_F()
404 std::string host_and_path = "test-host/title2.html"; in IN_PROC_BROWSER_TEST_F() local
431 {host_and_path, "?requestableschemes=", kChromeUIUntrustedScheme, ",", in IN_PROC_BROWSER_TEST_F()
438 {requestable_scheme, url::kStandardSchemeSeparator, host_and_path})); in IN_PROC_BROWSER_TEST_F()
445 {unrequestable_scheme, url::kStandardSchemeSeparator, host_and_path})); in IN_PROC_BROWSER_TEST_F()
/dports/www/chromium-legacy/chromium-88.0.4324.182/components/omnibox/browser/
H A Dbuiltin_provider.cc96 base::string16 host_and_path = base::UTF8ToUTF16(url.host() + url.path()); in Start() local
97 base::TrimString(host_and_path, base::ASCIIToUTF16("/"), &host_and_path); in Start()
98 size_t match_length = embedderAbout.length() + host_and_path.length(); in Start()
102 if (base::StartsWith(*i, host_and_path, in Start()
/dports/www/chromium-legacy/chromium-88.0.4324.182/content/browser/webui/
H A Dweb_ui_browsertest.cc452 std::string host_and_path = "test-host/title2.html"; in IN_PROC_BROWSER_TEST_F() local
453 const GURL chrome_url(GetWebUIURL(host_and_path)); in IN_PROC_BROWSER_TEST_F()
471 {requestable_scheme, url::kStandardSchemeSeparator, host_and_path})); in IN_PROC_BROWSER_TEST_F()
478 {unrequestable_scheme, url::kStandardSchemeSeparator, host_and_path})); in IN_PROC_BROWSER_TEST_F()
490 std::string host_and_path = "test-host/title2.html"; in IN_PROC_BROWSER_TEST_F() local
517 {host_and_path, "?requestableschemes=", kChromeUIUntrustedScheme, ",", in IN_PROC_BROWSER_TEST_F()
524 {requestable_scheme, url::kStandardSchemeSeparator, host_and_path})); in IN_PROC_BROWSER_TEST_F()
531 {unrequestable_scheme, url::kStandardSchemeSeparator, host_and_path})); in IN_PROC_BROWSER_TEST_F()
/dports/www/chromium-legacy/chromium-88.0.4324.182/content/public/test/
H A Dweb_ui_browsertest_util.cc144 GURL GetChromeUntrustedUIURL(const std::string& host_and_path) { in GetChromeUntrustedUIURL() argument
146 url::kStandardSchemeSeparator + host_and_path); in GetChromeUntrustedUIURL()
H A Dweb_ui_browsertest_util.h39 GURL GetChromeUntrustedUIURL(const std::string& host_and_path);
/dports/www/chromium-legacy/chromium-88.0.4324.182/components/policy/core/browser/
H A Durl_util.cc59 GURL BuildURL(bool is_https, const std::string& host_and_path) { in BuildURL() argument
61 return GURL(scheme + "://" + host_and_path); in BuildURL()