Home | History | Annotate | Download | only in clipboard

Lines Matching defs:base_url

271                             base::string16* html, std::string* base_url) {
272 DCHECK(data_object && html && base_url);
282 CFHtmlToHtml(std::string(data.get(), data.Size()), &html_utf8, base_url);
390 const std::string& base_url) {
414 if (!base_url.empty()) {
416 base_url.length() + 2; // Add 2 for \r\n.
427 if (!base_url.empty()) {
429 result.append(base_url);
447 std::string* base_url) {
452 cf_html, base_url, NULL, &fragment_start, &fragment_end);
463 std::string* base_url,
467 // Obtain base_url if present.
468 if (base_url) {
475 *base_url = cf_html.substr(src_start, src_end - src_start);
476 base::TrimWhitespace(*base_url, base::TRIM_ALL, base_url);