OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:CookieFetcher
(Results
1 - 4
of
4
) sorted by null
/external/chromium/chrome/browser/chromeos/login/
cookie_fetcher.h
23
// A
CookieFetcher
manages its own lifecycle. It deletes itself once it's
25
class
CookieFetcher
: public URLFetcher::Delegate {
28
explicit
CookieFetcher
(Profile* profile);
32
CookieFetcher
(Profile* profile,
56
virtual ~
CookieFetcher
() {}
63
DISALLOW_COPY_AND_ASSIGN(
CookieFetcher
);
cookie_fetcher.cc
22
CookieFetcher
::
CookieFetcher
(Profile* profile) : profile_(profile) {
30
void
CookieFetcher
::AttemptFetch(const std::string& credentials) {
35
void
CookieFetcher
::OnURLFetchComplete(const URLFetcher* source,
cookie_fetcher_unittest.cc
56
CookieFetcher
* cf = new
CookieFetcher
(NULL, cl_handler, i_handler);
83
CookieFetcher
* cf = new
CookieFetcher
(&profile_,
105
CookieFetcher
* cf = new
CookieFetcher
(&profile_,
132
CookieFetcher
* cf = new
CookieFetcher
(&profile_,
156
CookieFetcher
* cf = new
CookieFetcher
(&profile_
[
all
...]
login_utils.cc
356
//
CookieFetcher
will delete itself once done.
357
CookieFetcher
* cf = new
CookieFetcher
(profile);
Completed in 2488 milliseconds