Searched defs:Frame (Results 1 - 8 of 8) sorted by relevance

/external/webkit/WebKit/android/WebCoreSupport/
H A DContextMenuClientAndroid.cpp41 void ContextMenuClientAndroid::searchWithGoogle(const Frame*) { notImplemented(); } argument
42 void ContextMenuClientAndroid::lookUpInDictionary(Frame*) { notImplemented(); }
/external/webkit/WebKit/haiku/WebCoreSupport/
H A DContextMenuClientHaiku.cpp58 void ContextMenuClientHaiku::lookUpInDictionary(Frame*)
79 void ContextMenuClientHaiku::searchWithGoogle(const Frame*) argument
/external/webkit/WebKit/qt/WebCoreSupport/
H A DContextMenuClientQt.cpp60 void ContextMenuClientQt::lookUpInDictionary(Frame*)
81 void ContextMenuClientQt::searchWithGoogle(const Frame*) argument
/external/webkit/WebKit/wx/WebKitSupport/
H A DContextMenuClientWx.cpp66 void ContextMenuClientWx::searchWithGoogle(const Frame*) argument
71 void ContextMenuClientWx::lookUpInDictionary(Frame*)
/external/webkit/WebKit/gtk/WebCoreSupport/
H A DContextMenuClientGtk.cpp179 void ContextMenuClient::searchWithGoogle(const Frame*) argument
184 void ContextMenuClient::lookUpInDictionary(Frame*)
/external/webkit/WebCore/page/
H A DFrame.h66 class Frame : public RefCounted<Frame> { class in namespace:WebCore
68 static PassRefPtr<Frame> create(Page* page, HTMLFrameOwnerElement* ownerElement, FrameLoaderClient* client)
70 return adoptRef(new Frame(page, ownerElement, client));
73 ~Frame();
117 Frame(Page*, HTMLFrameOwnerElement*, FrameLoaderClient*);
122 static Frame* frameForWidget(const Widget*);
165 void lifeSupportTimerFired(Timer<Frame>*);
336 Timer<Frame> m_lifeSupportTimer;
H A DFrame.cpp30 #include "Frame.h"
122 static WTF::RefCountedLeakCounter frameCounter("Frame");
125 static inline Frame* parentFromOwnerElement(HTMLFrameOwnerElement* ownerElement)
132 Frame::Frame(Page* page, HTMLFrameOwnerElement* ownerElement, FrameLoaderClient* frameLoaderClient) function in class:WebCore::Frame
144 , m_lifeSupportTimer(this, &Frame::lifeSupportTimerFired)
154 Frame* parent = parentFromOwnerElement(ownerElement);
192 Frame::~Frame()
223 void Frame
[all...]
/external/webkit/WebCore/loader/
H A DEmptyClients.h48 Viewless element needs to create a dummy Page->Frame->FrameView tree for use in parsing or executing JavaScript.
85 virtual Page* createWindow(Frame*, const FrameLoadRequest&, const WindowFeatures&) { return 0; }
108 virtual bool runBeforeUnloadConfirmPanel(const String&, Frame*) { return true; }
112 virtual void runJavaScriptAlert(Frame*, const String&) { }
113 virtual bool runJavaScriptConfirm(Frame*, const String&) { return false; }
114 virtual bool runJavaScriptPrompt(Frame*, const String&, const String&, String&) { return false; }
131 virtual void contentsSizeChanged(Frame*, const IntSize&) const { }
138 virtual void print(Frame*) { }
141 virtual void exceededDatabaseQuota(Frame*, const String&) { }
152 virtual void runOpenPanel(Frame*, PassRefPt
447 searchWithGoogle(const Frame*) argument
[all...]

Completed in 153 milliseconds