OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:Fetcher
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/components/precache/core/
precache_fetcher.cc
102
class PrecacheFetcher::
Fetcher
: public net::URLFetcherDelegate {
104
// Construct a new
Fetcher
. This will create and start a new URLFetcher for
106
Fetcher
(net::URLRequestContextGetter* request_context, const GURL& url,
108
virtual ~
Fetcher
() {}
115
DISALLOW_COPY_AND_ASSIGN(
Fetcher
);
118
PrecacheFetcher::
Fetcher
::
Fetcher
(
128
void PrecacheFetcher::
Fetcher
::OnURLFetchComplete(const URLFetcher* source) {
158
fetcher_.reset(new
Fetcher
(request_context_, config_url,
167
new
Fetcher
(request_context_, resource_urls_to_fetch_.front()
[
all
...]
/external/chromium_org/google_apis/gaia/
oauth2_token_service.cc
86
// To use this class, call CreateAndStart() to create and start a
Fetcher
.
88
// The
Fetcher
will call back the service by calling
90
// not destructed before it completes fetching; if the
Fetcher
is destructed
92
//
Fetcher
destructs itself after calling back the service when finishes
95
// Requests that are waiting for the fetching results of this
Fetcher
can be
96
// added to the
Fetcher
by calling
97
// OAuth2TokenService::
Fetcher
::AddWaitingRequest() before the
Fetcher
103
// - when the
Fetcher
completes fetching, if the
Fetcher
is not destructe
199
OAuth2TokenService::Fetcher*
fetcher
= new Fetcher(
local
[
all
...]
Completed in 88 milliseconds