OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:m_documentLoader
(Results
1 - 7
of
7
) sorted by null
/external/chromium_org/third_party/WebKit/Source/web/
ApplicationCacheHost.cpp
64
,
m_documentLoader
(documentLoader)
67
ASSERT(
m_documentLoader
);
86
m_internal->m_outerHost->willStartMainResourceRequest(wrapped, WebFrameImpl::fromFrame(
m_documentLoader
->frame()));
111
Frame* frame =
m_documentLoader
->frame();
162
InspectorInstrumentation::updateApplicationCacheStatus(
m_documentLoader
->frame());
234
InspectorInstrumentation::updateApplicationCacheStatus(
m_documentLoader
->frame());
246
ASSERT(
m_documentLoader
->frame());
247
return
m_documentLoader
->frame()->settings()
248
&&
m_documentLoader
->frame()->settings()->offlineWebApplicationCacheEnabled();
ApplicationCacheHostInternal.h
45
blink::WebFrameImpl* webFrame = blink::WebFrameImpl::fromFrame(host->
m_documentLoader
->frame());
/external/chromium_org/third_party/WebKit/Source/core/loader/
FrameLoader.cpp
186
if (
m_documentLoader
)
187
m_documentLoader
->setDefersLoading(defers);
324
if (!m_currentItem || historyItemPolicy == CreateNewHistoryItem || m_currentItem->url() !=
m_documentLoader
->url()) {
329
const KURL& unreachableURL =
m_documentLoader
->unreachableURL();
330
const KURL& url = unreachableURL.isEmpty() ?
m_documentLoader
->requestURL() : unreachableURL;
331
const KURL& originalURL = unreachableURL.isEmpty() ?
m_documentLoader
->originalURL() : unreachableURL;
337
m_currentItem->setFormInfoFromRequest(
m_documentLoader
->request());
345
if (m_loadType == FrameLoadTypeStandard &&
m_documentLoader
->isURLValidForNewHistoryEntry())
357
InspectorInstrumentation::didCommitLoad(m_frame,
m_documentLoader
.get());
373
m_frame->document()->initContentSecurityPolicy(
m_documentLoader
? ContentSecurityPolicyResponseHeaders(m_documentLoader->response()) : ContentSecurityPolicyRespon (…)
[
all
...]
FrameLoader.h
117
DocumentLoader* documentLoader() const { return
m_documentLoader
.get(); }
272
RefPtr<DocumentLoader>
m_documentLoader
;
/external/chromium_org/third_party/WebKit/Source/core/loader/appcache/
ApplicationCacheHost.h
137
DocumentLoader* documentLoader() const { return
m_documentLoader
; }
147
DocumentLoader*
m_documentLoader
;
/external/chromium_org/third_party/WebKit/Source/core/fetch/
ResourceFetcher.cpp
224
,
m_documentLoader
(documentLoader)
236
m_documentLoader
= 0;
259
if (
m_documentLoader
)
260
return
m_documentLoader
->frame();
568
if (!
m_documentLoader
)
570
if (
m_documentLoader
== frame()->loader().activeDocumentLoader())
647
if (!
m_documentLoader
|| !
m_documentLoader
->scheduleArchiveLoad(resource.get(), request.resourceRequest()))
722
if (!
m_documentLoader
->overrideEncoding().isEmpty() || frameLoadType == FrameLoadTypeBackForward)
734
if (
m_documentLoader
&& m_documentLoader->isLoadingInAPISense())
[
all
...]
ResourceFetcher.h
123
DocumentLoader* documentLoader() const { return
m_documentLoader
; }
124
void clearDocumentLoader() {
m_documentLoader
= 0; }
204
DocumentLoader*
m_documentLoader
;
Completed in 260 milliseconds