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

1 2 3 4 56 7 8 91011>>

  /external/webkit/WebKit/wx/WebKitSupport/
DragClientWx.cpp 66 Frame*, bool linkDrag)
71 DragImageRef DragClientWx::createDragImageForLink(KURL&, const String& label, Frame*)
DragClientWx.h 41 virtual void startDrag(WebCore::DragImageRef dragImage, const WebCore::IntPoint& dragImageOrigin, const WebCore::IntPoint& eventPos, WebCore::Clipboard*, WebCore::Frame*, bool linkDrag = false);
42 virtual WebCore::DragImageRef createDragImageForLink(WebCore::KURL&, const WebCore::String& label, WebCore::Frame*);
  /external/webkit/WebCore/page/
Frame.cpp 30 #include "Frame.h"
122 static WTF::RefCountedLeakCounter frameCounter("Frame");
125 static inline Frame* parentFromOwnerElement(HTMLFrameOwnerElement* ownerElement)
129 return ownerElement->document()->frame();
132 Frame::Frame(Page* page, HTMLFrameOwnerElement* ownerElement, FrameLoaderClient* frameLoaderClient)
144 , m_lifeSupportTimer(this, &Frame::lifeSupportTimerFired)
154 Frame* parent = parentFromOwnerElement(ownerElement);
192 Frame::~Frame()
1121 Frame* frame = *it; local
    [all...]
XSSAuditor.h 35 class Frame;
51 // When you instantiate the XSSAuditor you must specify the Frame of the
57 // ScriptController object and passed the Frame the script originated. The
71 XSSAuditor(Frame*);
145 bool findInRequest(Frame*, const FindTask&) const;
149 // The frame to audit.
150 Frame* m_frame;
DragController.h 41 class Frame;
80 bool mayStartDragAtEventLocation(const Frame*, const IntPoint& framePos);
85 bool startDrag(Frame* src, Clipboard*, DragOperation srcOp, const PlatformMouseEvent& dragEvent, const IntPoint& dragOrigin, bool isDHTMLDrag);
108 IntRect selectionDraggingRect(Frame*);
109 bool doDrag(Frame* src, Clipboard* clipboard, DragImageRef dragImage, const KURL& linkURL, const KURL& imageURL, Node* node, IntPoint& dragLoc, IntPoint& dragImageOffset);
110 void doImageDrag(Element*, const IntPoint&, const IntRect&, Clipboard*, Frame*, IntPoint&);
111 void doSystemDrag(DragImageRef, const IntPoint&, const IntPoint&, Clipboard*, Frame*, bool forLink);
  /external/webkit/WebCore/editing/
EditorCommand.cpp 43 #include "Frame.h"
66 bool (*execute)(Frame*, Event*, EditorCommandSource, const String&);
67 bool (*isSupported)(Frame*, EditorCommandSource);
68 bool (*isEnabled)(Frame*, Event*, EditorCommandSource);
69 TriState (*state)(Frame*, Event*);
70 String (*value)(Frame*, Event*);
86 static Frame* targetFrame(Frame* frame, Event* event)
89 return frame;
    [all...]
  /external/webkit/WebKit/haiku/WebCoreSupport/
ChromeClientHaiku.cpp 31 #include "Frame.h"
105 Page* ChromeClientHaiku::createWindow(Frame*, const FrameLoadRequest&, const WebCore::WindowFeatures&)
111 Page* ChromeClientHaiku::createModalDialog(Frame*, const FrameLoadRequest&)
206 bool ChromeClientHaiku::runBeforeUnloadConfirmPanel(const String& message, Frame* frame)
217 void ChromeClientHaiku::runJavaScriptAlert(Frame*, const String& msg)
223 bool ChromeClientHaiku::runJavaScriptConfirm(Frame*, const String& msg)
229 bool ChromeClientHaiku::runJavaScriptPrompt(Frame*, const String& message, const String& defaultValue, String& result)
284 void ChromeClientHaiku::contentsSizeChanged(Frame*, const IntSize&) const
322 void ChromeClientHaiku::print(Frame*)
    [all...]
  /external/webkit/WebKit/win/WebCoreSupport/
WebChromeClient.h 60 virtual WebCore::Page* createWindow(WebCore::Frame*, const WebCore::FrameLoadRequest&, const WebCore::WindowFeatures&);
83 virtual bool runBeforeUnloadConfirmPanel(const WebCore::String& message, WebCore::Frame* frame);
87 virtual void runJavaScriptAlert(WebCore::Frame*, const WebCore::String&);
88 virtual bool runJavaScriptConfirm(WebCore::Frame*, const WebCore::String&);
89 virtual bool runJavaScriptPrompt(WebCore::Frame*, const WebCore::String& message, const WebCore::String& defaultValue, WebCore::String& result);
101 virtual void contentsSizeChanged(WebCore::Frame*, const WebCore::IntSize&) const;
108 virtual void print(WebCore::Frame*);
111 virtual void exceededDatabaseQuota(WebCore::Frame*, const WebCore::String&);
125 virtual void runOpenPanel(WebCore::Frame*, PassRefPtr<WebCore::FileChooser>)
    [all...]
  /external/webkit/WebCore/bindings/objc/
DOMCustomXPathNSResolver.h 38 class Frame;
  /external/webkit/WebCore/dom/
DOMImplementation.h 35 class Frame;
59 static PassRefPtr<Document> createDocument(const String& MIMEType, Frame*, bool inViewSourceMode);
60 static PassRefPtr<Document> createDocument(Frame*);
61 static PassRefPtr<HTMLDocument> createHTMLDocument(Frame*);
  /external/webkit/WebCore/loader/
HistoryController.h 40 class Frame;
46 HistoryController(Frame*);
84 PassRefPtr<HistoryItem> createItemTree(Frame* targetFrame, bool clipAtTarget);
90 Frame* m_frame;
EmptyClients.h 48 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*, PassRefPtr<FileChooser>) {
    [all...]
  /external/webkit/WebCore/loader/appcache/
DOMApplicationCache.h 44 class Frame;
50 static PassRefPtr<DOMApplicationCache> create(Frame* frame) { return adoptRef(new DOMApplicationCache(frame)); }
81 DOMApplicationCache(Frame*);
90 Frame* m_frame;
  /external/webkit/WebCore/loader/archive/cf/
LegacyWebArchive.h 36 class Frame;
46 static PassRefPtr<LegacyWebArchive> create(Frame*);
47 static PassRefPtr<LegacyWebArchive> createFromSelection(Frame*);
57 static PassRefPtr<LegacyWebArchive> create(const String& markupString, Frame*, const Vector<Node*>& nodes);
  /external/webkit/WebCore/page/wx/
EventHandlerWx.cpp 31 #include "Frame.h"
45 bool EventHandler::passMousePressEventToSubframe(MouseEventWithHitTestResults& mev, Frame* subframe)
51 bool EventHandler::passMouseMoveEventToSubframe(MouseEventWithHitTestResults& mev, Frame* subframe, WebCore::HitTestResult* hittest)
57 bool EventHandler::passMouseReleaseEventToSubframe(MouseEventWithHitTestResults& mev, Frame* subframe)
82 return static_cast<FrameView*>(widget)->frame()->eventHandler()->handleWheelEvent(event);
91 bool EventHandler::passSubframeEventToSubframe(MouseEventWithHitTestResults&, Frame* subframe, HitTestResult*)
  /external/webkit/WebCore/platform/win/
ClipboardWin.h 67 virtual void declareAndWriteDragImage(Element*, const KURL&, const String& title, Frame*);
68 virtual void writeURL(const KURL&, const String&, Frame*);
69 virtual void writeRange(Range*, Frame*);
87 Frame* m_frame;
  /external/webkit/WebCore/platform/wx/
PasteboardWx.cpp 31 #include "Frame.h"
53 void Pasteboard::writeSelection(Range* selectedRange, bool canSmartCopyOrDelete, Frame* frame)
56 wxTheClipboard->SetData( new wxTextDataObject(frame->selectedText()) );
75 String Pasteboard::plainText(Frame* frame)
81 PassRefPtr<DocumentFragment> Pasteboard::documentFragment(Frame* frame, PassRefPtr<Range> context,
100 void Pasteboard::writeURL(const KURL& url, const String&, Frame*)
  /external/webkit/WebKit/chromium/src/
StorageEventDispatcherChromium.cpp 48 SecurityOrigin* origin, Frame* sourceFrame)
ChromeClientImpl.h 69 WebCore::Frame*, const WebCore::FrameLoadRequest&, const WebCore::WindowFeatures&);
88 const WebCore::String& message, WebCore::Frame*);
90 virtual void runJavaScriptAlert(WebCore::Frame*, const WebCore::String&);
91 virtual bool runJavaScriptConfirm(WebCore::Frame*, const WebCore::String&);
93 WebCore::Frame*, const WebCore::String& message,
108 virtual void contentsSizeChanged(WebCore::Frame*, const WebCore::IntSize&) const;
115 virtual void print(WebCore::Frame*);
117 WebCore::Frame*, const WebCore::String& databaseName);
125 WebCore::Frame*, WebCore::Geolocation*) { }
126 virtual void runOpenPanel(WebCore::Frame*, PassRefPtr<WebCore::FileChooser>)
    [all...]
  /external/webkit/WebKit/wx/
WebFramePrivate.h 33 #include "Frame.h"
41 frame(0)
44 WebCore::Frame* frame; member in class:WebFramePrivate
  /external/webkit/WebCore/css/
MediaQueryEvaluator.cpp 36 #include "Frame.h"
60 typedef bool (*EvalFunc)(CSSValue*, RenderStyle*, Frame*, MediaFeaturePrefix);
99 MediaQueryEvaluator:: MediaQueryEvaluator(const String& acceptedMediaType, Frame* frame, RenderStyle* style)
101 , m_frame(frame)
216 static bool colorMediaFeatureEval(CSSValue* value, RenderStyle*, Frame* frame, MediaFeaturePrefix op)
218 int bitsPerComponent = screenDepthPerComponent(frame->page()->mainFrame()->view());
226 static bool monochromeMediaFeatureEval(CSSValue* value, RenderStyle* style, Frame* frame, MediaFeaturePrefix op
    [all...]
  /external/webkit/WebKit/android/jni/
WebViewCore.h 98 * WebViewCore object and the main frame.
100 WebViewCore(JNIEnv* env, jobject javaView, WebCore::Frame* mainframe);
241 * @param origin The origin of the frame requesting Geolocation
262 WebCore::String retrieveHref(WebCore::Frame* frame, WebCore::Node* node);
263 WebCore::String retrieveAnchorText(WebCore::Frame* frame, WebCore::Node* node);
264 WebCore::String requestLabel(WebCore::Frame* , WebCore::Node* );
272 void moveFocus(WebCore::Frame* frame, WebCore::Node* node)
    [all...]
  /external/webkit/WebCore/bindings/v8/
ScriptCachedFrameData.cpp 29 #include "Frame.h"
35 ScriptCachedFrameData::ScriptCachedFrameData(Frame* frame)
40 ASSERT(V8Proxy::mainWorldContext(frame) == V8Proxy::context(frame));
41 m_context.set(V8Proxy::mainWorldContext(frame));
46 m_domWindow = frame->domWindow();
54 void ScriptCachedFrameData::restore(Frame* frame)
63 V8Proxy* proxy = V8Proxy::retrieve(frame);
    [all...]
  /external/webkit/WebCore/bindings/v8/custom/
V8CustomApplicationInstalledCallback.cpp 31 #include "Frame.h"
36 V8CustomApplicationInstalledCallback::V8CustomApplicationInstalledCallback(v8::Local<v8::Object> callback, Frame* frame)
38 , m_frame(frame)
61 // Protect the frame until the callback returns.
62 RefPtr<Frame> protector(m_frame);
V8CustomPositionCallback.cpp 29 #include "Frame.h"
35 V8CustomPositionCallback::V8CustomPositionCallback(v8::Local<v8::Object> callback, Frame* frame)
37 , m_frame(frame)
60 // Protect the frame until the callback returns.
61 RefPtr<Frame> protector(m_frame);

Completed in 627 milliseconds

1 2 3 4 56 7 8 91011>>