HomeSort by relevance Sort by last modified time
    Searched defs:CachedFrame (Results 1 - 3 of 3) sorted by null

  /external/webkit/WebCore/history/
CachedFrame.cpp 56 DEFINE_STATIC_LOCAL(WTF::RefCountedLeakCounter, counter, ("CachedFrame"));
115 CachedFrame::CachedFrame(Frame* frame)
140 m_childFrames.append(CachedFrame::create(child));
145 // 2 - It's much easier to destroy a CachedFrame while it resides in the PageCache if it is disconnected from its parent.
154 LOG(PageCache, "Finished creating CachedFrame for main frame url '%s' and DocumentLoader %p\n", m_url.string().utf8().data(), m_documentLoader.get());
156 LOG(PageCache, "Finished creating CachedFrame for child frame with url '%s' and DocumentLoader %p\n", m_url.string().utf8().data(), m_documentLoader.get());
165 void CachedFrame::open()
174 void CachedFrame::clear()
180 // This means the CachedFrame has been
    [all...]
CachedFrame.h 35 class CachedFrame;
42 typedef Vector<RefPtr<CachedFrame> > CachedFrameVector;
70 class CachedFrame : public RefCounted<CachedFrame>, private CachedFrameBase {
72 static PassRefPtr<CachedFrame> create(Frame* frame) { return adoptRef(new CachedFrame(frame)); }
89 CachedFrame(Frame*);
  /external/webkit/WebKit/android/nav/
CachedFrame.h 49 class CachedFrame {
72 CachedFrame() {}
78 void addFrame(CachedFrame& child) { mCachedFrames.append(child); }
84 bool checkVisited(const CachedNode* , CachedFrame::Direction ) const;
88 const CachedNode* currentCursor(const CachedFrame** ) const;
90 const CachedNode* currentFocus(const CachedFrame** ) const;
95 bool* inside, const CachedNode** , const CachedFrame** directFrame,
96 const CachedFrame** resultFrame, int* x,
98 const CachedFrame* findBestFrameAt(int x, int y) const;
100 const CachedFrame** , int* x, int* y) const
    [all...]

Completed in 55 milliseconds