Searched defs:WebFrame (Results 1 - 10 of 10) sorted by relevance

/external/webkit/Source/WebKit/chromium/public/
H A DWebFrame.h79 class WebFrame { class in namespace:WebKit
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* to
[all...]
H A DWebApplicationCacheHost.h41 class WebFrame;
77 virtual void willStartMainResourceRequest(WebURLRequest& r, const WebFrame*) { willStartMainResourceRequest(r); } argument
H A DWebViewClient.h54 class WebFrame;
89 virtual WebView* createView(WebFrame* creator,
116 virtual void printPage(WebFrame*) { }
141 virtual void didChangeLoadProgress(WebFrame*, double loadProgress) { }
190 WebFrame*, const WebString& message) { }
196 WebFrame*, const WebString& message) { return false; }
204 WebFrame*, const WebString& message, const WebString& defaultValue,
212 WebFrame*, const WebString& message) { return true; }
234 virtual void showContextMenu(WebFrame*, const WebContextMenuData&) { }
189 runModalAlertDialog( WebFrame*, const WebString& message) argument
195 runModalConfirmDialog( WebFrame*, const WebString& message) argument
203 runModalPromptDialog( WebFrame*, const WebString& message, const WebString& defaultValue, WebString* actualValue) argument
211 runModalBeforeUnloadDialog( WebFrame*, const WebString& message) argument
H A DWebFrameClient.h49 class WebFrame;
73 virtual WebPlugin* createPlugin(WebFrame*, const WebPluginParams&) { return 0; }
76 virtual WebWorker* createWorker(WebFrame*, WebWorkerClient*) { return 0; }
79 virtual WebSharedWorker* createSharedWorker(WebFrame*, const WebURL&, const WebString&, unsigned long long) { return 0; }
82 virtual WebMediaPlayer* createMediaPlayer(WebFrame*, WebMediaPlayerClient*) { return 0; }
85 virtual WebApplicationCacheHost* createApplicationCacheHost(WebFrame*, WebApplicationCacheHostClient*) { return 0; }
92 virtual WebCookieJar* cookieJar(WebFrame*) { return 0; }
101 virtual void frameDetached(WebFrame*) { }
104 virtual void willClose(WebFrame*) { }
107 virtual bool allowPlugins(WebFrame*, boo
122 loadURLExternally( WebFrame*, const WebURLRequest&, WebNavigationPolicy) argument
130 decidePolicyForNavigation( WebFrame*, const WebURLRequest&, WebNavigationType, const WebNode& originatingNode, WebNavigationPolicy defaultPolicy, bool isRedirect) argument
136 canHandleRequest( WebFrame*, const WebURLRequest& request) argument
140 cannotHandleRequestError( WebFrame*, const WebURLRequest& request) argument
144 cancelledError( WebFrame*, const WebURLRequest& request) argument
148 unableToImplementPolicyWithError( WebFrame*, const WebURLError&) argument
163 willPerformClientRedirect( WebFrame*, const WebURL& from, const WebURL& to, double interval, double fireTime) argument
193 didReceiveDocumentData( WebFrame*, const char* data, size_t length, bool& preventDefault) argument
251 assignIdentifierToRequest( WebFrame*, unsigned identifier, const WebURLRequest&) argument
262 willSendRequest( WebFrame*, unsigned identifier, WebURLRequest&, const WebURLResponse& redirectResponse) argument
268 didReceiveResponse( WebFrame*, unsigned identifier, const WebURLResponse&) argument
272 didFinishResourceLoad( WebFrame*, unsigned identifier) argument
276 didFailResourceLoad( WebFrame*, unsigned identifier, const WebURLError&) argument
280 didLoadResourceFromMemoryCache( WebFrame*, const WebURLRequest&, const WebURLResponse&) argument
369 openFileSystem( WebFrame*, WebFileSystem::Type, long long size, bool create, WebFileSystemCallbacks*) argument
382 queryStorageUsageAndQuota( WebFrame*, WebStorageQuotaType, WebStorageQuotaCallbacks*) argument
395 requestStorageQuota( WebFrame*, WebStorageQuotaType, unsigned long long newQuotaInBytes, WebStorageQuotaCallbacks*) argument
[all...]
/external/webkit/Source/WebKit/android/jni/
H A DWebCoreFrameBridge.h26 // TODO: change name to WebFrame.h
58 // one instance of WebFrame per Page for calling into Java's BrowserFrame
59 class WebFrame : public WebCoreRefObject { class in namespace:android
61 WebFrame(JNIEnv* env, jobject obj, jobject historyList, WebCore::Page* page);
62 ~WebFrame();
65 static WebFrame* getWebFrame(const WebCore::Frame* frame);
H A DWebCoreFrameBridge.cpp143 android::WebFrame* webFrame)
175 struct WebFrame::JavaBrowserFrame
225 WebFrame::WebFrame(JNIEnv* env, jobject obj, jobject historyList, WebCore::Page* page) function in class:android::WebFrame
324 WebFrame::~WebFrame()
336 WebFrame* WebFrame::getWebFrame(const WebCore::Frame* frame)
401 WebFrame::shouldInterceptRequest(const WTF::String& url)
421 WebFrame
[all...]
/external/webkit/Source/WebKit2/WebProcess/WebPage/
H A DWebFrame.h53 class WebFrame : public APIObject { class in namespace:WebKit
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();
H A DWebFrame.cpp27 #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();
106 PassRefPtr<WebFrame> WebFram
116 WebFrame::WebFrame() function in class:WebKit::WebFrame
[all...]
/external/webkit/Source/WebKit/win/
H A DWebFrame.cpp29 #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)
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)
172 return const_cast<WebFrame*>(webFrame)->impl();
229 class WebFrame::WebFramePrivate {
247 // WebFrame
249 WebFrame::WebFrame() function in class:WebFrame
[all...]
/external/webkit/Tools/DumpRenderTree/chromium/
H A DWebViewHost.cpp45 #include "WebFrame.h"
232 WebView* WebViewHost::createView(WebFrame*, const WebURLRequest&, const WebWindowFeatures&, const WebString&)
401 WebFrame* frame = webView()->focusedFrame();
452 void WebViewHost::runModalAlertDialog(WebFrame*, const WebString& message)
457 bool WebViewHost::runModalConfirmDialog(WebFrame*, const WebString& message)
463 bool WebViewHost::runModalPromptDialog(WebFrame* frame, const WebString& message,
470 bool WebViewHost::runModalBeforeUnloadDialog(WebFrame*, const WebString&)
475 void WebViewHost::showContextMenu(WebFrame*, const WebContextMenuData& contextMenuData)
760 WebPlugin* WebViewHost::createPlugin(WebFrame* frame, const WebPluginParams& params)
765 WebWorker* WebViewHost::createWorker(WebFrame*, WebWorkerClien
798 decidePolicyForNavigation( WebFrame*, const WebURLRequest& request, WebNavigationType type, const WebNode& originatingNode, WebNavigationPolicy defaultPolicy, bool isRedirect) argument
[all...]

Completed in 238 milliseconds