Home
last modified time | relevance | path

Searched refs:pathId (Results 1 – 5 of 5) sorted by relevance

/external/chromium/chrome/browser/resources/
Dcollected_cookies.js36 chrome.send('Block', [selected.pathId]);
42 chrome.send('Allow', [selected.pathId]);
48 chrome.send('AllowThisSession', [selected.pathId]);
Dcookies_tree.js65 get pathId() { getter in CookiesTreeItem
68 return parent.pathId + ',' + this.data.id;
79 chrome.send(this.tree.requestChildrenMessage, [this.pathId]);
/external/chromium/chrome/browser/resources/options/
Dcookies_list.js156 chrome.send('removeCookie', [item.node.pathId]);
527 chrome.send('loadCookie', [this.pathId]);
553 get pathId() { getter in CookieTreeNode
556 return parent.pathId + ',' + this.data.id;
702 var pathId = item.pathId;
703 if (pathId)
704 chrome.send('removeCookie', [pathId]);
Dcertificate_tree.js37 get pathId() { getter in CertificateTreeItem
40 return parent.pathId + ',' + this.data.id;
/external/webkit/Source/WebCore/rendering/svg/
DRenderSVGTextPath.cpp47 String pathId = SVGURIReference::getTarget(textPathElement->href()); in layoutPath() local
48 Element* targetElement = textPathElement->document()->getElementById(pathId); in layoutPath()