HomeSort by relevance Sort by last modified time
    Searched refs:Frame (Results 351 - 375 of 919) sorted by null

<<11121314151617181920>>

  /external/webkit/Source/WebCore/inspector/
InspectorController.h 42 class Frame;
69 void didClearWindowObjectInWorld(Frame*, DOMWrapperWorld*);
InspectorPageAgent.h 43 class Frame;
70 void didClearWindowObjectInWorld(Frame*, DOMWrapperWorld*);
  /external/webkit/Source/WebCore/loader/
MainResourceLoader.h 50 static PassRefPtr<MainResourceLoader> create(Frame*);
75 MainResourceLoader(Frame*);
  /external/webkit/Source/WebCore/page/
PageGroupLoadDeferrer.cpp 25 #include "Frame.h"
50 for (Frame* frame = otherPage->mainFrame(); frame; frame = frame->tree()->traverseNext()) {
51 frame->document()->suspendScriptedAnimationControllerCallbacks();
52 frame->document()->suspendActiveDOMObjects(ActiveDOMObject::WillShowDialog);
53 frame->document()->scriptRunner()->suspend();
54 if (DocumentParser* parser = frame->document()->parser()
    [all...]
Chrome.cpp 29 #include "Frame.h"
112 void Chrome::contentsSizeChanged(Frame* frame, const IntSize& size) const
114 m_client->contentsSizeChanged(frame, size);
173 void Chrome::focusedFrameChanged(Frame* frame) const
175 m_client->focusedFrameChanged(frame);
178 Page* Chrome::createWindow(Frame* frame, const FrameLoadRequest& request, const WindowFeatures& features, const NavigationAction& action) const
180 Page* newPage = m_client->createWindow(frame, request, features, action)
    [all...]
Geolocation.h 44 class Frame;
57 static PassRefPtr<Geolocation> create(Frame* frame) { return adoptRef(new Geolocation(frame)); }
73 Frame* frame() const { return m_frame; } function in class:WebCore::Geolocation
88 Geolocation(Frame*);
196 Frame* m_frame;
  /external/webkit/Source/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/Source/WebCore/platform/
DragImage.cpp 32 #include "Frame.h"
68 DragImageRef createDragImageForSelection(Frame* frame)
70 DragImageRef image = frame->dragImageForSelection();
77 DragImageRef createDragImageForLink(KURL&, const String&, Frame*)
  /external/webkit/Source/WebCore/rendering/
RenderTreeAsText.h 38 class Frame;
58 String externalRepresentation(Frame*, RenderAsTextBehavior = RenderAsTextBehaviorNormal);
  /external/webkit/Source/WebCore/storage/
Storage.cpp 31 #include "Frame.h"
40 PassRefPtr<Storage> Storage::create(Frame* frame, PassRefPtr<StorageArea> storageArea)
42 return adoptRef(new Storage(frame, storageArea));
45 Storage::Storage(Frame* frame, PassRefPtr<StorageArea> storageArea)
46 : m_frame(frame)
StorageAreaSync.h 38 class Frame;
59 void dispatchStorageEvent(const String& key, const String& oldValue, const String& newValue, Frame* sourceFrame);
  /external/webkit/Source/WebCore/xml/
XSLTProcessor.h 40 class Frame;
51 PassRefPtr<Document> createDocumentFromSource(const String& source, const String& sourceEncoding, const String& sourceMIMEType, Node* sourceNode, Frame* frame);
  /external/webkit/Source/WebKit/chromium/src/
DragClientImpl.cpp 36 #include "Frame.h"
77 Frame* frame,
80 // Add a ref to the frame just in case a load occurs mid-drag.
81 RefPtr<Frame> frameProtector = frame;
StorageEventDispatcherImpl.cpp 38 #include "Frame.h"
61 // 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
63 Vector<RefPtr<Frame> > frames;
68 for (Frame* frame = (*it)->mainFrame(); frame; frame = frame->tree()->traverseNext()) {
69 if (frame->document()->securityOrigin()->equal(securityOrigin)
    [all...]
WebDevToolsAgentImpl.h 43 class Frame;
69 virtual void didClearWindowObject(WebFrameImpl* frame);
94 WebCore::Frame* mainFrame();
  /external/webkit/Source/WebKit/qt/WebCoreSupport/
NotificationPresenterClientQt.h 51 class Frame;
99 void allowNotificationForFrame(Frame*);
  /external/webkit/Source/WebKit/win/WebCoreSupport/
WebGeolocationClient.cpp 35 #include <WebCore/Frame.h>
96 Frame* frame = geolocation->frame(); local
97 COMPtr<WebSecurityOrigin> origin(AdoptCOM, WebSecurityOrigin::createInstance(frame->document()->securityOrigin()));
99 HRESULT hr = uiDelegatePrivate2->decidePolicyForGeolocationRequest(m_webView.get(), kit(frame), origin.get(), listener.get());
  /external/webkit/Source/WebKit2/WebProcess/Geolocation/
GeolocationPermissionRequestManager.cpp 33 #include <WebCore/Frame.h>
60 Frame* frame = geolocation->frame(); local
62 WebFrame* webFrame = static_cast<WebFrameLoaderClient*>(frame->loader()->client())->webFrame();
63 SecurityOrigin* origin = frame->document()->securityOrigin();
  /external/webkit/Source/WebKit2/WebProcess/WebCoreSupport/
WebContextMenuClient.cpp 32 #include <WebCore/Frame.h>
71 void WebContextMenuClient::searchWithGoogle(const Frame* frame)
73 String searchString = frame->editor()->selectedText();
82 if (Page* page = frame->page()) {
  /external/webkit/Source/WebKit2/WebProcess/WebCoreSupport/mac/
WebPopupMenuMac.mm 30 #import <WebCore/Frame.h>
  /frameworks/base/media/mca/filterpacks/java/android/filterpacks/base/
OutputStreamTarget.java 22 import android.filterfw.core.Frame;
49 Frame input = pullInput("data");
  /frameworks/base/media/mca/filterpacks/java/android/filterpacks/imageproc/
ImageEncoder.java 23 import android.filterfw.core.Frame;
59 Frame input = pullInput("image");
  /frameworks/base/media/mca/filterpacks/java/android/filterpacks/numeric/
SinWaveFilter.java 22 import android.filterfw.core.Frame;
58 Frame output = env.getFrameManager().newFrame(mOutputFormat);
  /external/webkit/Source/WebCore/bindings/js/
JSDOMWindowBase.cpp 29 #include "Frame.h"
82 printErrorMessageForFrame(impl()->frame(), message);
88 // frame does not destroy it
89 if (Frame *frame = impl()->frame())
90 frame->keepAlive();
99 Frame* frame = impl()->frame();
    [all...]
  /external/webkit/Source/WebCore/platform/android/
TemporaryLinkStubs.cpp 48 #include "Frame.h"
114 void Pasteboard::writeSelection(Range*, bool, Frame*)
124 void Pasteboard::writeURL(const KURL&, const String&, Frame*)
140 PassRefPtr<DocumentFragment> Pasteboard::documentFragment(Frame*, PassRefPtr<Range>, bool, bool&)
146 String Pasteboard::plainText(Frame*)
289 void* WebCore::Frame::dragImageForSelection()

Completed in 356 milliseconds

<<11121314151617181920>>