Lines Matching refs:url
33 url(node->GetURL()),
45 pickle->WriteString(url.spec());
66 url = GURL(url_spec);
125 bool BookmarkNodeData::ReadFromTuple(const GURL& url, const string16& title) {
128 if (!url.is_valid())
133 element.url = url;
145 // If there is only one element and it is a URL, write the URL to the
149 const std::string url = elements[0].url.spec();
151 scw.WriteBookmark(title, url);
152 scw.WriteHyperlink(EscapeForHTML(title), url);
154 // Also write the URL to the clipboard as text so that it can be pasted
159 scw.WriteText(UTF8ToUTF16(url));
179 std::string url;
180 clipboard->ReadBookmark(&title, &url);
181 if (!url.empty()) {
184 element.url = GURL(url);
223 // If there is only one element and it is a URL, write the URL to the
226 if (elements[0].url.SchemeIs(chrome::kJavaScriptScheme)) {
227 data->SetString(UTF8ToUTF16(elements[0].url.spec()));
229 data->SetURL(elements[0].url, elements[0].title);
251 // See if there is a URL on the clipboard.
253 GURL url;
255 if (data.GetURLAndTitle(&url, &title))
256 ReadFromTuple(url, title);