Lines Matching refs:url
65 // Returns relative directory of given web app url.
80 host = UTF8ToWide(info.url.host());
81 scheme_port = (info.url.has_scheme() ? UTF8ToWide(info.url.scheme())
83 (info.url.has_port() ? UTF8ToWide(info.url.port()) : L"80");
85 host = info.url.host();
86 scheme_port = info.url.scheme() + FILE_PATH_LITERAL("_") + info.url.port();
331 ShellIntegration::CommandLineArgsForLauncher(shortcut_info_.url,
343 // Generates app id from web app url and profile path.
445 // Returns data directory for given web app url
460 shortcut_info.url);
464 std::string GenerateApplicationNameFromURL(const GURL& url) {
466 t.append(url.host());
468 t.append(url.path());
486 bool IsValidUrl(const GURL& url) {
496 if (url.SchemeIs(kValidUrlSchemes[i]))