HomeSort by relevance Sort by last modified time
    Searched full:cachedpage (Results 1 - 25 of 28) sorted by null

1 2

  /external/webkit/Source/WebCore/history/
CachedPage.cpp 27 #include "CachedPage.h"
42 static WTF::RefCountedLeakCounter cachedPageCounter("CachedPage");
45 PassRefPtr<CachedPage> CachedPage::create(Page* page)
47 return adoptRef(new CachedPage(page));
50 CachedPage::CachedPage(Page* page)
60 CachedPage::~CachedPage()
70 void CachedPage::restore(Page* page
    [all...]
CachedPage.h 37 class CachedPage : public RefCounted<CachedPage> {
39 static PassRefPtr<CachedPage> create(Page*);
40 ~CachedPage();
56 CachedPage(Page*);
PageCache.h 37 class CachedPage;
54 CachedPage* get(HistoryItem* item);
65 typedef HashSet<RefPtr<CachedPage> > CachedPageSet;
77 void autorelease(PassRefPtr<CachedPage>);
PageCache.cpp 32 #include "CachedPage.h"
362 item->m_cachedPage = CachedPage::create(page);
369 CachedPage* PageCache::get(HistoryItem* item)
374 if (CachedPage* cachedPage = item->m_cachedPage.get()) {
378 if (currentTime() - cachedPage->timeStamp() <= 1800)
379 return cachedPage;
478 void PageCache::autorelease(PassRefPtr<CachedPage> page)
CachedFrame.cpp 27 #include "CachedPage.h"
78 // CachedFrames should always have had destroy() called by their parent CachedPage
HistoryItem.h 53 class CachedPage;
287 RefPtr<CachedPage> m_cachedPage;
HistoryItem.cpp 29 #include "CachedPage.h"
  /external/webkit/Source/WebCore/loader/
HistoryController.cpp 35 #include "CachedPage.h"
208 CachedPage* cachedPage = pageCache()->get(currentItem());
214 ASSERT(!cachedPage || cachedPage->document() == m_frame->document());
215 if (cachedPage && cachedPage->document() == m_frame->document()) {
216 cachedPage->document()->setInPageCache(false);
217 cachedPage->clear();
220 if (cachedPage)
    [all...]
FrameLoader.cpp 41 #include "CachedPage.h"
    [all...]
FrameLoader.h 53 class CachedPage;
362 void transitionToCommitted(PassRefPtr<CachedPage>);
DocumentLoader.cpp 34 #include "CachedPage.h"
  /external/webkit/Tools/Scripts/
check-for-global-initializers 109 next if $shortName eq "CachedPage.o";
  /external/webkit/Source/WebCore/platform/android/
TemporaryLinkStubs.cpp 32 #include "CachedPage.h"
  /external/webkit/Source/WebCore/svg/graphics/
SVGImage.cpp 31 #include "CachedPage.h"
  /external/webkit/Source/WebCore/
ChangeLog-2008-08-10     [all...]
Android.mk 298 history/CachedPage.cpp \
    [all...]
WebCore.pro 629 history/CachedPage.cpp \
    [all...]
CMakeLists.txt 707 history/CachedPage.cpp
    [all...]
GNUmakefile.list.am     [all...]
ChangeLog-2007-10-14     [all...]
GNUmakefile.am     [all...]
WebCore.gypi     [all...]
ChangeLog-2009-06-16 346 (WebCore::FrameLoader::open): Added a call to CachedPage::restore(),
    [all...]
  /external/webkit/Source/WebKit/wx/
ChangeLog     [all...]
  /external/webkit/Source/WebCore/WebCore.xcodeproj/
project.pbxproj     [all...]

Completed in 3703 milliseconds

1 2