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

1 2 3 4 5 6 7 891011>>

  /external/webkit/WebCore/page/animation/
AnimationControllerPrivate.h 47 class Frame;
54 AnimationControllerPrivate(Frame*);
101 Frame* m_frame;
  /external/webkit/WebCore/platform/network/android/
ResourceHandleAndroid.cpp 33 #include "Frame.h"
51 bool ResourceHandle::start(Frame* frame)
53 DocumentLoader* docLoader = frame->loader()->activeDocumentLoader();
58 PassRefPtr<ResourceLoaderAndroid> loader = ResourceLoaderAndroid::start(this, d->m_request, frame->loader()->client(), isMainResource, false);
105 bool ResourceHandle::willLoadFromCache(ResourceRequest& request, Frame*)
156 Frame* frame)
165 ResourceLoaderAndroid::start(&h, h.getInternal()->m_request, frame->loader()->client(), false, true);
  /external/webkit/WebCore/bindings/js/
JSCustomXPathNSResolver.h 43 class Frame;
  /external/webkit/WebCore/bindings/v8/
V8Helpers.cpp 49 return V8Proxy::mainWorldContext(object->rootObject->frame());
55 Frame* frame = object->rootObject->frame(); local
56 return V8Proxy::retrieve(frame);
  /external/webkit/WebCore/bindings/v8/custom/
V8CustomEventListener.h 41 class Frame;
V8HTMLFrameSetElementCustom.cpp 35 #include "Frame.h"
57 if (Frame* frame = doc->frame())
58 return toV8(frame->domWindow());
  /external/webkit/WebCore/bindings/v8/specialization/
V8BindingState.cpp 56 void State<V8Binding>::immediatelyReportUnsafeAccessTo(Frame* target)
  /external/webkit/WebCore/editing/
RemoveFormatCommand.cpp 32 #include "Frame.h"
51 Frame* frame = document()->frame(); local
54 String string = plainText(frame->selection()->selection().toNormalizedRange().get());
58 Node* root = frame->selection()->rootEditableElement();
78 frame->setTypingStyle(defaultStyle.get());
  /external/webkit/WebCore/page/
Frame.h 66 class Frame : public RefCounted<Frame> {
68 static PassRefPtr<Frame> create(Page* page, HTMLFrameOwnerElement* ownerElement, FrameLoaderClient* client)
70 return adoptRef(new Frame(page, ownerElement, client));
73 ~Frame();
100 RenderView* contentRenderer() const; // root renderer for the document contained in this frame
101 RenderPart* ownerRenderer() const; // renderer for the element that contains this frame
117 Frame(Page*, HTMLFrameOwnerElement*, FrameLoaderClient*);
122 static Frame* frameForWidget(const Widget*);
131 void keepAlive(); // Used to keep the frame alive when running a script that might destroy it
    [all...]
Chrome.cpp 29 #include "Frame.h"
95 void Chrome::contentsSizeChanged(Frame* frame, const IntSize& size) const
97 m_client->contentsSizeChanged(frame, size);
162 Page* Chrome::createWindow(Frame* frame, const FrameLoadRequest& request, const WindowFeatures& features) const
164 Page* newPage = m_client->createWindow(frame, request, features);
253 bool Chrome::runBeforeUnloadConfirmPanel(const String& message, Frame* frame)
259 return m_client->runBeforeUnloadConfirmPanel(message, frame);
    [all...]
PageGroupLoadDeferrer.cpp 24 #include "Frame.h"
46 for (Frame* frame = otherPage->mainFrame(); frame; frame = frame->tree()->traverseNext())
47 frame->document()->suspendActiveDOMObjects();
63 for (Frame* frame = page->mainFrame(); frame; frame = frame->tree()->traverseNext()
    [all...]
  /external/webkit/WebCore/platform/graphics/gtk/
WebKitWebSourceGStreamer.h 22 #include "Frame.h"
48 void webKitWebSrcSetFrame(WebKitWebSrc* src, WebCore::Frame* frame);
  /external/webkit/WebCore/platform/haiku/
ScreenHaiku.cpp 32 #include "Frame.h"
48 return FloatRect(screen.Frame());
  /external/webkit/WebCore/platform/qt/
ContextMenuQt.cpp 35 #include <Frame.h>
  /external/webkit/WebKit/android/wds/
Command.cpp 34 #include "Frame.h"
51 static bool callDumpRenderTree(const Frame* frame, const Connection* conn) {
52 CString str = externalRepresentation(frame->contentRenderer()).latin1();
57 static bool callDumpDomTree(const Frame* frame, const Connection* conn) {
58 WebViewCore::getWebViewCore(frame->view())->dumpDomTree(true);
90 InternalCommand(const Command* comm, const Frame* frame,
93 , m_frame(frame)
    [all...]
  /external/webkit/WebCore/loader/
FrameLoader.h 61 class Frame;
91 FrameLoader(Frame*, FrameLoaderClient*);
96 Frame* frame() const { return m_frame; } function in class:WebCore::FrameLoader
110 void loadURLIntoChildFrame(const KURL&, const String& referer, Frame*);
123 static void reportLocalLoadFailed(Frame*, const String& url);
126 Frame* createWindow(FrameLoader* frameLoaderForFrameLookup, const FrameLoadRequest&, const WindowFeatures&, bool& created);
269 Frame* opener();
270 void setOpener(Frame*);
297 bool requestObject(RenderPart* frame, const String& url, const AtomicString& frameName
    [all...]
MainResourceLoader.h 47 static PassRefPtr<MainResourceLoader> create(Frame*);
72 MainResourceLoader(Frame*);
NetscapePlugInStreamLoader.cpp 37 NetscapePlugInStreamLoader::NetscapePlugInStreamLoader(Frame* frame, NetscapePlugInStreamLoaderClient* client)
38 : ResourceLoader(frame, true, true)
47 PassRefPtr<NetscapePlugInStreamLoader> NetscapePlugInStreamLoader::create(Frame* frame, NetscapePlugInStreamLoaderClient* client)
49 return adoptRef(new NetscapePlugInStreamLoader(frame, client));
  /external/webkit/WebKit/android/nav/
CacheBuilder.h 44 class Frame;
95 static void GetGlobalOffset(Frame* , int* x, int * y);
97 static bool validNode(Frame* startFrame, void* framePtr, void* nodePtr);
216 void BuildFrame(Frame* root, Frame* frame,
232 static Frame* FrameAnd(CacheBuilder* focusNav);
233 static Frame* FrameAnd(const CacheBuilder* focusNav);
234 static CacheBuilder* Builder(Frame* );
235 static Frame* HasFrame(Node* )
    [all...]
  /external/webkit/WebKit/win/
WebFrame.cpp 148 WebFrame* kit(Frame* frame)
150 if (!frame)
153 FrameLoaderClient* frameLoaderClient = frame->loader()->client();
159 Frame* core(WebFrame* webFrame)
166 // This function is not in WebFrame.h because we don't want to advertise the ability to get a non-const Frame from a const WebFrame
167 Frame* core(const WebFrame* webFrame)
231 : frame(0)
238 FrameView* frameView() { return frame ? frame->view() : 0;
240 Frame* frame; member in class:WebFrame::WebFramePrivate
1015 RefPtr<Frame> frame = Frame::create(page, ownerElement, this); local
1128 Frame* frame = core(this); local
1151 Frame* frame = core(this); local
1174 Frame* frame = core(this); local
1202 Frame* frame = core(this); local
1221 Frame* frame = core(this); local
1237 Frame* frame = core(this); local
2342 Frame* frame = anyWorldGlobalObject->impl()->frame(); local
    [all...]
  /external/webkit/WebCore/html/
HTMLDocument.h 38 static PassRefPtr<HTMLDocument> create(Frame* frame)
40 return adoptRef(new HTMLDocument(frame));
83 HTMLDocument(Frame*);
  /external/webkit/WebCore/page/mac/
PageMac.cpp 31 #include "Frame.h"
47 for (Frame* frame = m_mainFrame.get(); frame; frame = frame->tree()->traverseNext()) {
48 if (DocumentLoader* documentLoader = frame->loader()->documentLoader())
50 if (DocumentLoader* documentLoader = frame->loader()->provisionalDocumentLoader())
68 for (Frame* frame = m_mainFrame.get(); frame; frame = frame->tree()->traverseNext())
    [all...]
  /external/webkit/WebCore/platform/
DragImage.h 63 class Frame;
97 DragImageRef createDragImageForSelection(Frame*);
  /external/webkit/WebCore/rendering/
HitTestResult.h 30 class Frame;
63 Frame* targetFrame() const;
  /external/webkit/WebCore/storage/
Storage.cpp 37 PassRefPtr<Storage> Storage::create(Frame* frame, PassRefPtr<StorageArea> storageArea)
39 return adoptRef(new Storage(frame, storageArea));
42 Storage::Storage(Frame* frame, PassRefPtr<StorageArea> storageArea)
43 : m_frame(frame)

Completed in 809 milliseconds

1 2 3 4 5 6 7 891011>>