Lines Matching refs:url
37 std::string WebClipboardImpl::URLToMarkup(const WebURL& url,
40 markup.append(url.spec());
49 std::string WebClipboardImpl::URLToImageMarkup(const WebURL& url,
52 markup.append(url.spec());
160 void WebClipboardImpl::writeURL(const WebURL& url, const WebString& title) {
163 scw.WriteBookmark(title, url.spec());
164 scw.WriteHTML(UTF8ToUTF16(URLToMarkup(url, title)), "");
165 scw.WriteText(UTF8ToUTF16(std::string(url.spec())));
169 const WebImage& image, const WebURL& url, const WebString& title) {
186 if (!url.isEmpty()) {
187 scw.WriteBookmark(title, url.spec());
188 scw.WriteHTML(UTF8ToUTF16(URLToImageMarkup(url, title)), "");