/external/webkit/WebCore/bindings/js/ |
ScriptState.h | 39 class Frame; 49 ScriptState* mainWorldScriptState(Frame*);
|
/external/webkit/WebCore/bindings/v8/ |
ScriptEventListener.h | 42 class Frame; 47 PassRefPtr<V8LazyEventListener> createAttributeEventListener(Frame*, Attribute*);
|
/external/webkit/WebCore/editing/ |
DeleteButton.cpp | 34 #include "Frame.h" 48 document()->frame()->editor()->deleteButtonController()->deleteTarget();
|
/external/webkit/WebCore/page/ |
FrameView.h | 28 #include "Frame.h" 40 class Frame; 58 static PassRefPtr<FrameView> create(Frame*); 59 static PassRefPtr<FrameView> create(Frame*, const IntSize& initialSize); 67 Frame* frame() const { return m_frame.get(); } function in class:WebCore::FrameView 203 FrameView(Frame*); 262 RefPtr<Frame> m_frame;
|
/external/webkit/WebCore/page/mac/ |
WebCoreFrameView.h | 29 class Frame; 39 - (WebCore::Frame*)_web_frame;
|
/external/webkit/WebCore/rendering/ |
RenderTreeAsText.h | 32 class Frame; 45 String externalRepresentation(Frame*, RenderAsTextBehavior = RenderAsTextBehaviorNormal);
|
/external/webkit/WebKit/android/WebCoreSupport/ |
ContextMenuClientAndroid.cpp | 41 void ContextMenuClientAndroid::searchWithGoogle(const Frame*) { notImplemented(); } 42 void ContextMenuClientAndroid::lookUpInDictionary(Frame*) { notImplemented(); }
|
ContextMenuClientAndroid.h | 42 virtual void searchWithGoogle(const Frame*); 43 virtual void lookUpInDictionary(Frame*);
|
DragClientAndroid.cpp | 42 void* DragClientAndroid::createDragImageForLink(KURL&, String const&, Frame*) { return NULL; } 44 void DragClientAndroid::startDrag(void*, IntPoint const&, IntPoint const&, Clipboard*, Frame*, bool) {}
|
DragClientAndroid.h | 43 virtual void startDrag(DragImageRef dragImage, const IntPoint& dragImageOrigin, const IntPoint& eventPos, Clipboard*, Frame*, bool linkDrag = false); 44 virtual DragImageRef createDragImageForLink(KURL&, const String& label, Frame*);
|
/external/webkit/WebKit/chromium/src/ |
DebuggerAgentImpl.cpp | 36 #include "Frame.h" 50 using WebCore::Frame; 95 void DebuggerAgentImpl::createUtilityContext(Frame* frame, v8::Persistent<v8::Context>* context) 98 bool canExecuteScripts = frame->script()->canExecuteScripts(); 101 v8::Handle<v8::Context> windowContext = V8Proxy::context(frame); 111 ASSERT(V8DOMWindow::toNative(windowWrapper) == frame->domWindow()); 117 // utility context more like main world context of the inspected frame,
|
WebMediaPlayerClientImpl.cpp | 11 #include "Frame.h" 45 WebMediaPlayerClient* client, Frame* frame) 47 WebFrameImpl* webFrame = WebFrameImpl::fromFrame(frame); 140 Frame* frame = static_cast<HTMLMediaElement*>( local 141 m_mediaPlayer->mediaPlayerClient())->document()->frame(); 142 m_webMediaPlayer.set(createWebMediaPlayer(this, frame));
|
/external/webkit/WebKit/gtk/WebCoreSupport/ |
ContextMenuClientGtk.h | 51 virtual void searchWithGoogle(const WebCore::Frame*); 52 virtual void lookUpInDictionary(WebCore::Frame*);
|
/external/webkit/WebKit/gtk/webkit/ |
webkitwebnavigationaction.cpp | 212 * WebKitWebNavigationAction:target-frame: 214 * The target frame for the navigation. 219 g_param_spec_string("target-frame", 220 _("Target frame"), 221 _("The target frame for the navigation"), 349 * Returns the target frame of the action. 351 * Return value: the target frame of the action or NULL 370 g_object_notify(G_OBJECT(navigationAction), "target-frame");
|
/external/webkit/WebKit/haiku/WebCoreSupport/ |
ContextMenuClientHaiku.cpp | 58 void ContextMenuClientHaiku::lookUpInDictionary(Frame*) 79 void ContextMenuClientHaiku::searchWithGoogle(const Frame*)
|
ContextMenuClientHaiku.h | 44 virtual void searchWithGoogle(const Frame*); 45 virtual void lookUpInDictionary(Frame*);
|
DragClientHaiku.cpp | 62 void DragClientHaiku::startDrag(DragImageRef dragImage, const IntPoint&, const IntPoint&, Clipboard*, Frame*, bool) 67 DragImageRef DragClientHaiku::createDragImageForLink(KURL&, const String&, Frame*)
|
DragClientHaiku.h | 41 const IntPoint& eventPos, Clipboard*, Frame*, bool linkDrag = false); 42 virtual DragImageRef createDragImageForLink(KURL&, const String& label, Frame*);
|
/external/webkit/WebKit/mac/Misc/ |
WebNSWindowExtras.m | 37 frameToCenterOver = [[NSApp mainWindow] frame]; 42 NSSize size = [self frame].size;
|
/external/webkit/WebKit/mac/WebCoreSupport/ |
WebContextMenuClient.h | 43 virtual void searchWithGoogle(const WebCore::Frame*); 44 virtual void lookUpInDictionary(WebCore::Frame*);
|
/external/webkit/WebKit/qt/WebCoreSupport/ |
ContextMenuClientQt.cpp | 60 void ContextMenuClientQt::lookUpInDictionary(Frame*) 81 void ContextMenuClientQt::searchWithGoogle(const Frame*)
|
ContextMenuClientQt.h | 45 virtual void lookUpInDictionary(Frame*); 49 virtual void searchWithGoogle(const Frame*);
|
DragClientQt.h | 39 virtual void startDrag(DragImageRef dragImage, const IntPoint& dragImageOrigin, const IntPoint& eventPos, Clipboard*, Frame*, bool linkDrag = false); 40 virtual DragImageRef createDragImageForLink(KURL&, const String& label, Frame*);
|
/external/webkit/WebKit/win/WebCoreSupport/ |
WebContextMenuClient.h | 44 virtual void searchWithGoogle(const WebCore::Frame*); 45 virtual void lookUpInDictionary(WebCore::Frame*);
|
/external/webkit/WebKit/win/ |
WebHTMLRepresentation.cpp | 34 #include <WebCore/Frame.h> 63 WebHTMLRepresentation* WebHTMLRepresentation::createInstance(WebFrame* frame) 66 instance->m_frame = frame; 67 frame->AddRef(); 298 WebCore::Frame* frame = core(m_frame); 299 if (!frame) 302 WebCore::Document* doc = frame->document();
|