HomeSort by relevance Sort by last modified time
    Searched defs:WebFrame (Results 1 - 7 of 7) sorted by null

  /external/webkit/Source/WebKit/chromium/public/
WebFrame.h 79 class WebFrame {
81 // Returns the number of live WebFrame objects, used for leak checking.
84 // The two functions below retrieve the WebFrame instances relating the
100 WEBKIT_API static WebFrame* frameForEnteredContext();
101 WEBKIT_API static WebFrame* frameForCurrentContext();
107 WEBKIT_API static WebFrame* frameForContext(v8::Handle<v8::Context>);
112 WEBKIT_API static WebFrame* fromFrameOwnerElement(const WebElement&);
178 virtual WebFrame* opener() const = 0;
185 virtual WebFrame* parent() const = 0;
188 virtual WebFrame* top() const = 0
    [all...]
  /external/webkit/Source/WebKit/android/jni/
WebCoreFrameBridge.h 26 // TODO: change name to WebFrame.h
58 // one instance of WebFrame per Page for calling into Java's BrowserFrame
59 class WebFrame : public WebCoreRefObject {
61 WebFrame(JNIEnv* env, jobject obj, jobject historyList, WebCore::Page* page);
62 ~WebFrame();
65 static WebFrame* getWebFrame(const WebCore::Frame* frame);
WebCoreFrameBridge.cpp 158 android::WebFrame* webFrame)
177 if (!(*pointer) && webFrame) {
178 (*pointer) = new String(webFrame->getRawResourceFilename(resId).impl());
190 struct WebFrame::JavaBrowserFrame
240 WebFrame::WebFrame(JNIEnv* env, jobject obj, jobject historyList, WebCore::Page* page)
343 WebFrame::~WebFrame()
355 WebFrame* WebFrame::getWebFrame(const WebCore::Frame* frame
    [all...]
  /external/webkit/Source/WebKit2/WebProcess/WebPage/
WebFrame.h 53 class WebFrame : public APIObject {
57 static PassRefPtr<WebFrame> createMainFrame(WebPage*);
58 static PassRefPtr<WebFrame> createSubframe(WebPage*, const String& frameName, WebCore::HTMLFrameOwnerElement*);
59 ~WebFrame();
100 static WebFrame* frameForContext(JSContextRef);
127 virtual void didFinishLoad(WebFrame*) = 0;
128 virtual void didFailLoad(WebFrame*, bool wasCancelled) = 0;
134 static PassRefPtr<WebFrame> create();
135 WebFrame();
WebFrame.cpp 27 #include "WebFrame.h"
68 static WTF::RefCountedLeakCounter webFrameCounter("WebFrame");
83 PassRefPtr<WebFrame> WebFrame::createMainFrame(WebPage* page)
85 RefPtr<WebFrame> frame = create();
94 PassRefPtr<WebFrame> WebFrame::createSubframe(WebPage* page, const String& frameName, HTMLFrameOwnerElement* ownerElement)
96 RefPtr<WebFrame> frame = create();
98 WebFrame* parentFrame = static_cast<WebFrameLoaderClient*>(ownerElement->document()->frame()->loader()->client())->webFrame();
    [all...]
  /external/webkit/Source/WebKit/win/
WebFrame.cpp 29 #include "WebFrame.h"
149 WebFrame* kit(Frame* frame)
156 return static_cast<WebFrame*>(frameLoaderClient); // eek, is there a better way than static cast?
160 Frame* core(WebFrame* webFrame)
162 if (!webFrame)
164 return webFrame->impl();
167 // 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
168 Frame* core(const WebFrame* webFrame
    [all...]
  /prebuilt/darwin-x86_64/swt/
swt.jar 

Completed in 97 milliseconds