HomeSort by relevance Sort by last modified time
    Searched refs:Frame (Results 101 - 125 of 603) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/webkit/WebCore/loader/
ResourceLoadNotifier.h 39 class Frame;
48 ResourceLoadNotifier(Frame*);
69 Frame* m_frame;
FormState.cpp 32 #include "Frame.h"
37 inline FormState::FormState(PassRefPtr<HTMLFormElement> form, StringPairVector& textFieldValuesToAdopt, PassRefPtr<Frame> sourceFrame, FormSubmissionTrigger formSubmissionTrigger)
45 PassRefPtr<FormState> FormState::create(PassRefPtr<HTMLFormElement> form, StringPairVector& textFieldValuesToAdopt, PassRefPtr<Frame> sourceFrame, FormSubmissionTrigger formSubmissionTrigger)
ImageDocument.h 36 static PassRefPtr<ImageDocument> create(Frame* frame)
38 return adoptRef(new ImageDocument(frame));
50 ImageDocument(Frame*);
NetscapePlugInStreamLoader.h 50 static PassRefPtr<NetscapePlugInStreamLoader> create(Frame*, NetscapePlugInStreamLoaderClient*);
63 NetscapePlugInStreamLoader(Frame*, NetscapePlugInStreamLoaderClient*);
SubresourceLoader.h 42 static PassRefPtr<SubresourceLoader> create(Frame*, SubresourceLoaderClient*, const ResourceRequest&, SecurityCheckPolicy = DoSecurityCheck, bool sendResourceLoadCallbacks = true, bool shouldContentSniff = true);
47 SubresourceLoader(Frame*, SubresourceLoaderClient*, bool sendResourceLoadCallbacks, bool shouldContentSniff);
  /external/webkit/WebCore/platform/android/
ClipboardAndroid.cpp 33 #include "Frame.h"
93 void ClipboardAndroid::declareAndWriteDragImage(Element*, const KURL&, const String&, Frame*)
97 void ClipboardAndroid::writeURL(const KURL&, const String&, Frame*)
101 void ClipboardAndroid::writeRange(Range* selectedRange, Frame*)
  /external/webkit/WebCore/platform/gtk/
ClipboardGtk.h 60 virtual void declareAndWriteDragImage(Element*, const KURL&, const String&, Frame*);
61 virtual void writeURL(const KURL&, const String&, Frame*);
62 virtual void writeRange(Range*, Frame*);
  /external/webkit/WebCore/platform/haiku/
ClipboardHaiku.h 61 virtual void declareAndWriteDragImage(Element*, const KURL&, const String& title, Frame*);
62 virtual void writeURL(const KURL&, const String&, Frame*);
63 virtual void writeRange(Range*, Frame*);
  /external/webkit/WebCore/platform/wx/
ClipboardWx.h 59 virtual void declareAndWriteDragImage(Element*, const KURL&, const String& title, Frame*);
60 virtual void writeURL(const KURL&, const String&, Frame*);
61 virtual void writeRange(Range*, Frame*);
  /external/webkit/WebKit/chromium/src/
DragClientImpl.cpp 36 #include "Frame.h"
74 Frame* frame,
77 // Add a ref to the frame just in case a load occurs mid-drag.
78 RefPtr<Frame> frameProtector = frame;
88 DragImageRef DragClientImpl::createDragImageForLink(KURL&, const String& label, Frame*)
ContextMenuClientImpl.h 51 virtual void lookUpInDictionary(WebCore::Frame*) {}
52 virtual void searchWithGoogle(const WebCore::Frame*) {}
  /external/webkit/WebKit/mac/WebCoreSupport/
WebChromeClient.h 58 virtual WebCore::Page* createWindow(WebCore::Frame*, const WebCore::FrameLoadRequest&, const WebCore::WindowFeatures&);
81 virtual bool runBeforeUnloadConfirmPanel(const WebCore::String& message, WebCore::Frame* frame);
85 virtual void runJavaScriptAlert(WebCore::Frame*, const WebCore::String&);
86 virtual bool runJavaScriptConfirm(WebCore::Frame*, const WebCore::String&);
87 virtual bool runJavaScriptPrompt(WebCore::Frame*, const WebCore::String& message, const WebCore::String& defaultValue, WebCore::String& result);
99 virtual void contentsSizeChanged(WebCore::Frame*, const WebCore::IntSize&) const;
109 virtual void print(WebCore::Frame*);
111 virtual void exceededDatabaseQuota(WebCore::Frame*, const WebCore::String& databaseName);
122 virtual void runOpenPanel(WebCore::Frame*, PassRefPtr<WebCore::FileChooser>)
    [all...]
WebDragClient.h 38 virtual void startDrag(WebCore::DragImageRef dragImage, const WebCore::IntPoint& dragPos, const WebCore::IntPoint& eventPos, WebCore::Clipboard*, WebCore::Frame*, bool linkDrag);
39 virtual WebCore::DragImageRef createDragImageForLink(WebCore::KURL& url, const WebCore::String& label, WebCore::Frame*);
40 virtual void declareAndWriteDragImage(NSPasteboard*, DOMElement*, NSURL*, NSString*, WebCore::Frame*);
  /external/webkit/WebKit/android/WebCoreSupport/
GeolocationPermissions.h 40 class Frame;
51 // origin specifies the scheme, host and port of particular frame. An
55 // Each instance handles permissions for a given main frame. The class
57 // - Non-remembered permissions last for the dureation of the main frame.
59 // - All permissions are shared between child frames of a main frame.
66 // the specified main frame (i.e. tab). The WebViewCore is used to
68 GeolocationPermissions(WebViewCore* webViewCore, WebCore::Frame* mainFrame);
71 // Queries the permission state for the specified frame. If the
75 // the same origin as the requesting frame.
76 void queryPermissionState(WebCore::Frame* frame)
    [all...]
ContextMenuClientAndroid.cpp 41 void ContextMenuClientAndroid::searchWithGoogle(const Frame*) { notImplemented(); }
42 void ContextMenuClientAndroid::lookUpInDictionary(Frame*) { notImplemented(); }
  /external/webkit/WebKit/android/jni/
WebCoreFrameBridge.h 58 static WebFrame* getWebFrame(const WebCore::Frame* frame);
67 void loadStarted(WebCore::Frame* frame);
69 void transitionToCommitted(WebCore::Frame* frame);
71 void didFinishLoad(WebCore::Frame* frame);
81 void windowObjectCleared(WebCore::Frame* frame);
    [all...]
  /system/wlan/ti/sta_dk_4_0_4_32/common/src/TNETW_Driver/FW_Transfer/DebugTrace_Xfer/
DebugTraceXfer.c 57 /* This is an Ethernet Version 2 frame: 14 Byte */
69 /* This is an IP frame: 20 Byte */
87 /* This is a UDP frame: 8 Byte */
95 /* This is a Trace Frame:*/
225 /* Build Frame to be send to the OS */
584 /* Copy the Frame Header */
601 * DESCRIPTION: Build the Trace Frame to be send to the OS
610 TraceFrame *Frame = &pDebugTrace->FrameHeader;
613 UINT16 *pShortData = (UINT16 *)&Frame->IP_Header;
616 * Calculate each Frame Lengt
    [all...]
  /external/webkit/WebCore/bindings/generic/
BindingSecurityBase.cpp 35 #include "Frame.h"
40 DOMWindow* BindingSecurityBase::getDOMWindow(Frame* frame)
42 return frame->domWindow();
45 Frame* BindingSecurityBase::getFrame(Node* node)
47 return node->document()->frame();
72 // Helper to check if the current execution context can access a target frame.
101 // detached context of the same frame as the blank page.
102 if (targetSecurityOrigin->isEmpty() && activeWindow->frame() == targetWindow->frame())
    [all...]
  /external/webkit/WebCore/bindings/js/
ScriptState.cpp 34 #include "Frame.h"
41 ScriptState* mainWorldScriptState(Frame* frame)
43 JSDOMWindowShell* shell = frame->script()->windowShell(mainThreadNormalWorld());
54 Frame* frame = document->frame();
55 if (!frame)
57 if (!frame->script()->canExecuteScripts())
59 return frame->script()->globalObject(world)->globalExec()
    [all...]
  /external/webkit/WebCore/page/
BarInfo.cpp 33 #include "Frame.h"
38 BarInfo::BarInfo(Frame* frame, Type type)
39 : m_frame(frame)
44 Frame* BarInfo::frame() const function in class:WebCore::BarInfo
  /external/webkit/WebKit/gtk/WebCoreSupport/
ContextMenuClientGtk.h 51 virtual void searchWithGoogle(const WebCore::Frame*);
52 virtual void lookUpInDictionary(WebCore::Frame*);
  /external/webkit/WebKit/haiku/WebCoreSupport/
DragClientHaiku.cpp 62 void DragClientHaiku::startDrag(DragImageRef dragImage, const IntPoint&, const IntPoint&, Clipboard*, Frame*, bool)
67 DragImageRef DragClientHaiku::createDragImageForLink(KURL&, const String&, Frame*)
  /external/webkit/WebKit/qt/WebCoreSupport/
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/
WebDragClient.h 41 virtual void startDrag(WebCore::DragImageRef, const WebCore::IntPoint&, const WebCore::IntPoint&, WebCore::Clipboard*, WebCore::Frame*, bool);
42 virtual WebCore::DragImageRef createDragImageForLink(WebCore::KURL&, const WebCore::String&, WebCore::Frame*);
  /external/webkit/WebKit/wx/WebKitSupport/
ContextMenuClientWx.cpp 66 void ContextMenuClientWx::searchWithGoogle(const Frame*)
71 void ContextMenuClientWx::lookUpInDictionary(Frame*)

Completed in 1082 milliseconds

1 2 3 45 6 7 8 91011>>