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

1 2 3 4 5 67 8 91011>>

  /external/webkit/WebCore/bindings/v8/custom/
V8CustomPositionErrorCallback.cpp 29 #include "Frame.h"
35 V8CustomPositionErrorCallback::V8CustomPositionErrorCallback(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);
V8CustomSQLStatementCallback.cpp 37 #include "Frame.h"
44 V8CustomSQLStatementCallback::V8CustomSQLStatementCallback(v8::Local<v8::Object> callback, Frame* frame)
46 , m_frame(frame)
70 // Protect the frame until the callback returns.
71 RefPtr<Frame> protector(m_frame);
V8CustomSQLStatementErrorCallback.cpp 37 #include "Frame.h"
44 V8CustomSQLStatementErrorCallback::V8CustomSQLStatementErrorCallback(v8::Local<v8::Object> callback, Frame* frame)
46 , m_frame(frame)
70 // Protect the frame until the callback returns.
71 RefPtr<Frame> protector(m_frame);
V8CustomSQLTransactionCallback.cpp 37 #include "Frame.h"
43 V8CustomSQLTransactionCallback::V8CustomSQLTransactionCallback(v8::Local<v8::Object> callback, Frame* frame)
45 , m_frame(frame)
69 // Protect the frame until the callback returns.
70 RefPtr<Frame> protector(m_frame);
V8CustomSQLTransactionErrorCallback.cpp 37 #include "Frame.h"
43 V8CustomSQLTransactionErrorCallback::V8CustomSQLTransactionErrorCallback(v8::Local<v8::Object> callback, Frame* frame)
45 , m_frame(frame)
68 // Protect the frame until the callback returns.
69 RefPtr<Frame> protector(m_frame);
  /external/webkit/WebCore/dom/
Touch.h 32 #include "Frame.h"
41 static PassRefPtr<Touch> create(Frame* frame, EventTarget* target,
44 return adoptRef(new Touch(frame, target, identifier, screenX,
58 Touch(Frame* frame, EventTarget* target, unsigned identifier,
  /external/webkit/WebCore/html/
HTMLFrameOwnerElement.cpp 25 #include "Frame.h"
44 if (Frame* frame = contentFrame()) {
45 frame->disconnectOwnerElement();
46 frame->loader()->frameDetached();
75 if (Frame* frame = contentFrame())
76 frame->loader()->ownerElementSandboxFlagsChanged();
HTMLViewSourceDocument.h 40 static PassRefPtr<HTMLViewSourceDocument> create(Frame* frame, const String& mimeType)
42 return adoptRef(new HTMLViewSourceDocument(frame, mimeType));
50 HTMLViewSourceDocument(Frame*, const String& mimeType);
HTMLPlugInImageElement.cpp 24 #include "Frame.h"
46 if (Frame* frame = document()->frame()) {
47 KURL completedURL = frame->loader()->completeURL(m_url);
48 return frame->loader()->client()->objectContentType(completedURL, m_serviceType) == ObjectContentImage;
  /external/webkit/WebCore/page/
Screen.cpp 34 #include "Frame.h"
41 Screen::Screen(Frame* frame)
42 : m_frame(frame)
46 Frame* Screen::frame() const function in class:WebCore::Screen
  /external/webkit/WebCore/page/animation/
AnimationController.h 42 class Frame;
50 AnimationController(Frame*);
  /external/webkit/WebKit/android/wds/
Command.h 33 class Frame;
49 // The dispatcher function called with a Frame for context and the established
53 typedef bool (*DispatchFunction)(const Frame*, const Connection*);
  /external/webkit/WebKit/chromium/src/
DragClientImpl.h 63 WebCore::Frame* frame,
66 WebCore::KURL&, const WebCore::String& label, WebCore::Frame*);
  /external/webkit/WebKit/gtk/WebCoreSupport/
DragClientGtk.h 49 virtual void startDrag(WebCore::DragImageRef dragImage, const WebCore::IntPoint& dragImageOrigin, const WebCore::IntPoint& eventPos, WebCore::Clipboard*, WebCore::Frame*, bool linkDrag = false);
50 virtual WebCore::DragImageRef createDragImageForLink(WebCore::KURL&, const WebCore::String& label, WebCore::Frame*);
  /external/sonivox/jet_tools/JetCreator/
JetHelp.py 28 frame = wx.Frame(None, -1, JetDefs.MAIN_HELPTITLE, size=(800,600)) variable
29 html1 = wx.html.HtmlWindow(frame, -1)
31 frame.Center()
32 frame.Show()
  /external/webkit/WebCore/bindings/generic/
BindingSecurity.h 43 class Frame;
50 // Check if the active execution context can access the target frame.
51 static bool canAccessFrame(State<Binding>*, Frame*, bool reportError);
82 Frame* target,
85 // The subject is detached from a frame, deny accesses.
103 Frame* target = getFrame(node);
112 bool BindingSecurity<Binding>::allowSettingFrameSrcToJavascriptUrl(State<Binding>* state, HTMLFrameElementBase* frame, String value)
115 Node* contentDoc = frame->contentDocument();
  /external/webkit/WebCore/bindings/js/
JSCustomSQLTransactionCallback.h 43 class Frame;
  /external/webkit/WebCore/bindings/v8/
V8DOMWindowShell.h 42 class Frame;
45 // V8WindowShell represents all the per-global object state for a Frame that
49 static PassRefPtr<V8DOMWindowShell> create(Frame*);
53 // Update document object of the frame.
91 V8DOMWindowShell(Frame*);
107 Frame* m_frame;
V8DataGridDataSource.cpp 38 #include "Frame.h"
45 V8DataGridDataSource::V8DataGridDataSource(v8::Handle<v8::Value> dataSource, Frame* frame)
47 , m_frame(frame)
  /external/webkit/WebCore/bindings/v8/specialization/
V8BindingDOMWindow.h 44 static void storeDialogArgs(State<V8Binding>*, Frame* newFrame, v8::Handle<v8::Value> dialogArgs)
46 // Set dialog arguments on the global object of the new frame.
  /external/webkit/WebCore/inspector/
JavaScriptDebugListener.h 42 class Frame;
  /external/webkit/WebCore/page/haiku/
EventHandlerHaiku.cpp 34 #include "Frame.h"
111 bool EventHandler::passSubframeEventToSubframe(MouseEventWithHitTestResults& event, Frame* subframe, HitTestResult*)
122 return static_cast<FrameView*>(widget)->frame()->eventHandler()->handleWheelEvent(event);
130 bool EventHandler::passMousePressEventToSubframe(MouseEventWithHitTestResults& mev, Frame* subframe)
135 bool EventHandler::passMouseMoveEventToSubframe(MouseEventWithHitTestResults& mev, Frame* subframe, HitTestResult* hoveredNode)
140 bool EventHandler::passMouseReleaseEventToSubframe(MouseEventWithHitTestResults& mev, Frame* subframe)
  /external/webkit/WebCore/platform/haiku/
PasteboardHaiku.cpp 32 #include "Frame.h"
54 void Pasteboard::writeSelection(Range* selectedRange, bool canSmartCopyOrDelete, Frame* frame)
65 data->AddString("text/plain", BString(frame->selectedText()));
94 String Pasteboard::plainText(Frame* frame)
112 PassRefPtr<DocumentFragment> Pasteboard::documentFragment(Frame* frame, PassRefPtr<Range> context,
119 void Pasteboard::writeURL(const KURL& url, const String&, Frame*)
  /external/webkit/WebCore/plugins/
PluginStream.h 47 class Frame;
60 static PassRefPtr<PluginStream> create(PluginStreamClient* client, Frame* frame, const ResourceRequest& request, bool sendNotification, void* notifyData, const NPPluginFuncs* functions, NPP instance, const PluginQuirkSet& quirks)
62 return adoptRef(new PluginStream(client, frame, request, sendNotification, notifyData, functions, instance, quirks));
86 PluginStream(PluginStreamClient*, Frame*, const ResourceRequest&, bool sendNotification, void* notifyData, const NPPluginFuncs*, NPP instance, const PluginQuirkSet&);
98 Frame* m_frame;
  /external/webkit/WebCore/storage/
StorageEventDispatcher.cpp 33 #include "Frame.h"
41 void StorageEventDispatcher::dispatch(const String& key, const String& oldValue, const String& newValue, StorageType storageType, SecurityOrigin* securityOrigin, Frame* sourceFrame)
47 // We need to copy all relevant frames from every page to a vector since sending the event to one frame might mutate the frame tree
49 Vector<RefPtr<Frame> > frames;
52 for (Frame* frame = page->mainFrame(); frame; frame = frame->tree()->traverseNext())
    [all...]

Completed in 239 milliseconds

1 2 3 4 5 67 8 91011>>