OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:backForwardData
(Results
1 - 6
of
6
) sorted by null
/external/webkit/Source/WebKit2/Shared/
WebBackForwardListItem.h
44
static PassRefPtr<WebBackForwardListItem> create(const String& originalURL, const String& url, const String& title, const uint8_t*
backForwardData
, size_t backForwardDataSize, uint64_t itemID)
46
return adoptRef(new WebBackForwardListItem(originalURL, url, title,
backForwardData
, backForwardDataSize, itemID));
63
const Vector<uint8_t>&
backForwardData
() const { return m_backForwardData; }
71
WebBackForwardListItem(const String& originalURL, const String& url, const String& title, const uint8_t*
backForwardData
, size_t backForwardDataSize, uint64_t itemID);
WebBackForwardListItem.cpp
36
WebBackForwardListItem::WebBackForwardListItem(const String& originalURL, const String& url, const String& title, const uint8_t*
backForwardData
, size_t backForwardDataSize, uint64_t itemID)
45
setBackForwardData(
backForwardData
, backForwardDataSize);
/external/webkit/Source/WebKit2/UIProcess/cf/
WebBackForwardListCF.cpp
73
RetainPtr<CFDataRef> entryData(AdoptCF, CFDataCreate(kCFAllocatorDefault, m_entries[i]->
backForwardData
().data(), m_entries[i]->
backForwardData
().size()));
147
CFDataRef
backForwardData
= (CFDataRef)CFDictionaryGetValue(entryDictionary, SessionHistoryEntryDataKey());
148
if (!
backForwardData
|| CFGetTypeID(
backForwardData
) != CFDataGetTypeID()) {
153
newEntries.append(WebBackForwardListItem::create(originalURL, entryURL, entryTitle, CFDataGetBytePtr(
backForwardData
), CFDataGetLength(
backForwardData
), generateWebBackForwardItemID()));
/external/webkit/Source/WebKit2/UIProcess/
WebProcessProxy.cpp
202
void WebProcessProxy::addBackForwardItem(uint64_t itemID, const String& originalURL, const String& url, const String& title, const CoreIPC::DataReference&
backForwardData
)
207
result.first->second = WebBackForwardListItem::create(originalURL, url, title,
backForwardData
.data(),
backForwardData
.size(), itemID);
215
result.first->second->setBackForwardData(
backForwardData
.data(),
backForwardData
.size());
WebProcessProxy.h
118
void addBackForwardItem(uint64_t itemID, const String& originalURLString, const String& urlString, const String& title, const CoreIPC::DataReference&
backForwardData
);
/external/webkit/Source/WebKit2/WebProcess/WebPage/
WebPage.cpp
1060
DecoderAdapter decoder(webItem->
backForwardData
().data(), webItem->
backForwardData
().size());
[
all
...]
Completed in 4197 milliseconds