OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:CookieTreeHostNode
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/chrome/browser/browsing_data/
cookies_tree_model.h
45
class
CookieTreeHostNode
;
75
TYPE_HOST, // This is used for
CookieTreeHostNode
nodes.
167
CookieTreeHostNode
* GetOrCreateHostNode(const GURL& url);
179
//
CookieTreeHostNode
-------------------------------------------------------
180
class
CookieTreeHostNode
: public CookieTreeNode {
185
explicit
CookieTreeHostNode
(const GURL& url);
186
virtual ~
CookieTreeHostNode
();
191
//
CookieTreeHostNode
methods:
238
DISALLOW_COPY_AND_ASSIGN(
CookieTreeHostNode
);
cookies_tree_model.cc
43
// This comparator is only meant to compare
CookieTreeHostNode
types. Make
51
const
CookieTreeHostNode
* ltn =
52
static_cast<const
CookieTreeHostNode
*>(lhs);
53
const
CookieTreeHostNode
* rtn =
54
static_cast<const
CookieTreeHostNode
*>(rhs);
146
CookieTreeHostNode
* host = static_cast<
CookieTreeHostNode
*>(
522
CookieTreeHostNode
* CookieTreeRootNode::GetOrCreateHostNode(
524
scoped_ptr<
CookieTreeHostNode
> host_node(
525
new
CookieTreeHostNode
(url))
[
all
...]
Completed in 30 milliseconds