Lines Matching refs:url
42 // BookmarkNode contains information about a starred entry: title, URL, favicon,
50 URL,
55 // Creates a new node with the specified url and id of 0
56 explicit BookmarkNode(const GURL& url);
57 // Creates a new node with the specified url and id.
58 BookmarkNode(int64 id, const GURL& url);
61 // Returns the URL.
63 // Sets the URL to the given value.
64 void SetURL(const GURL& url) { url_ = url; }
93 // node whose type is not URL.
94 bool is_folder() const { return type_ != URL; }
96 // Is this a URL?
97 bool is_url() const { return type_ == URL; }
146 // The URL. BookmarkModel maintains maps off this URL, it is important that
147 // changes to the URL is done through the bookmark model.
234 // Sets the URL of the specified bookmark node.
235 void SetURL(const BookmarkNode* node, const GURL& url);
240 // Returns the set of nodes with the specified URL.
241 void GetNodesByURL(const GURL& url, std::vector<const BookmarkNode*>* nodes);
243 // Returns the most recently added node for the url. Returns NULL if url is
245 const BookmarkNode* GetMostRecentlyAddedNodeForURL(const GURL& url);
254 // Returns true if there is a bookmark for the specified URL. This method is
256 virtual bool IsBookmarked(const GURL& url);
271 // Adds a url at the specified position.
275 const GURL& url);
277 // Adds a url with a specific creation date.
281 const GURL& url,
288 // This is the convenience that makes sure the url is starred or not starred.
289 // If is_starred is false, all bookmarks for URL are removed. If is_starred is
290 // true and there are no bookmarks for url, a bookmark is created.
291 void SetURLStarred(const GURL& url,
337 // Used to order BookmarkNodes by URL.
347 bool IsBookmarkedNoLock(const GURL& url);
353 // the node is a url, its url is added to removed_urls.
371 // URL.
449 // Set of nodes ordered by URL. This is not a map to avoid copying the