OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:fetchContext
(Results
1 - 5
of
5
) sorted by null
/external/chromium_org/third_party/WebKit/Source/core/frame/
Frame.h
55
class
FetchContext
;
148
FetchContext
&
fetchContext
() const { return loader().
fetchContext
(); }
/external/chromium_org/third_party/WebKit/Source/core/loader/
FrameLoader.h
55
class
FetchContext
;
121
FetchContext
&
fetchContext
() const { return *m_fetchContext; }
275
OwnPtr<
FetchContext
> m_fetchContext;
DocumentLoader.cpp
37
#include "core/fetch/
FetchContext
.h"
293
m_frame->
fetchContext
().dispatchDidFinishLoading(this, m_identifierForLoadWithoutResourceLoader, finishTime);
542
m_frame->
fetchContext
().dispatchDidReceiveResponse(this, m_identifierForLoadWithoutResourceLoader, m_response, 0);
604
frame()->
fetchContext
().dispatchDidReceiveData(this, m_identifierForLoadWithoutResourceLoader, data, length, -1);
839
frame()->
fetchContext
().dispatchWillSendRequest(this, m_identifierForLoadWithoutResourceLoader, m_request, ResourceResponse());
[
all
...]
FrameFetchContext.cpp
92
CachePolicy parentCachePolicy = parentFrame->loader().
fetchContext
().cachePolicy(parentFrame->document());
/external/chromium_org/third_party/WebKit/Source/core/fetch/
ResourceFetcher.cpp
35
#include "core/fetch/
FetchContext
.h"
266
FetchContext
& ResourceFetcher::context() const
269
return frame->
fetchContext
();
270
return
FetchContext
::nullInstance();
[
all
...]
Completed in 104 milliseconds