HomeSort by relevance Sort by last modified time
    Searched refs:WebFrame (Results 76 - 100 of 223) sorted by null

1 2 34 5 6 7 8 9

  /external/webkit/Source/WebKit2/WebProcess/InjectedBundle/
InjectedBundlePagePolicyClient.cpp 37 WKBundlePagePolicyAction InjectedBundlePagePolicyClient::decidePolicyForNavigationAction(WebPage* page, WebFrame* frame, InjectedBundleNavigationAction* action, const ResourceRequest& resourceRequest, RefPtr<APIObject>& userData)
50 WKBundlePagePolicyAction InjectedBundlePagePolicyClient::decidePolicyForNewWindowAction(WebPage* page, WebFrame* frame, InjectedBundleNavigationAction* action, const ResourceRequest& resourceRequest, const String& frameName, RefPtr<APIObject>& userData)
63 WKBundlePagePolicyAction InjectedBundlePagePolicyClient::decidePolicyForResponse(WebPage* page, WebFrame* frame, const ResourceResponse& resourceResponse, const ResourceRequest& resourceRequest, RefPtr<APIObject>& userData)
77 void InjectedBundlePagePolicyClient::unableToImplementPolicy(WebPage* page, WebFrame* frame, const WebCore::ResourceError& error, RefPtr<APIObject>& userData)
InjectedBundleHitTestResult.cpp 30 #include "WebFrame.h"
52 WebFrame* InjectedBundleHitTestResult::frame() const
66 return static_cast<WebFrameLoaderClient*>(frame->loader()->client())->webFrame();
69 WebFrame* InjectedBundleHitTestResult::targetFrame() const
75 return static_cast<WebFrameLoaderClient*>(frame->loader()->client())->webFrame();
  /external/webkit/Tools/DumpRenderTree/mac/
FrameLoadDelegate.mm 72 @interface WebFrame (DRTExtras)
76 @implementation WebFrame (DRTExtras)
138 if ([dataSource webFrame] == topLoadingFrame) {
150 - (void)webView:(WebView *)sender didStartProvisionalLoadForFrame:(WebFrame *)frame
175 - (void)webView:(WebView *)sender didCommitLoadForFrame:(WebFrame *)frame
190 - (void)webView:(WebView *)sender didFailProvisionalLoadWithError:(NSError *)error forFrame:(WebFrame *)frame
210 - (void)webView:(WebView *)sender didFinishLoadForFrame:(WebFrame *)frame
213 ASSERT(frame == [[frame dataSource] webFrame]);
229 - (void)webView:(WebView *)sender didFailLoadWithError:(NSError *)error forFrame:(WebFrame *)frame
252 - (void)didClearWindowObjectInStandardWorldForFrame:(WebFrame *)fram
    [all...]
  /external/chromium/webkit/glue/
webkit_glue.cc 33 #include "third_party/WebKit/Source/WebKit/chromium/public/WebFrame.h"
52 using WebKit::WebFrame;
93 string16 DumpDocumentText(WebFrame* web_frame) {
103 string16 DumpFramesAsText(WebFrame* web_frame, bool recursive) {
118 WebFrame* child = web_frame->firstChild();
126 string16 DumpRenderer(WebFrame* web_frame) {
130 bool CounterValueForElementById(WebFrame* web_frame, const std::string& id,
141 int PageNumberForElementById(WebFrame* web_frame,
150 int NumberOfPages(WebFrame* web_frame,
160 string16 DumpFrameScrollPosition(WebFrame* web_frame, bool recursive)
    [all...]
mimetype_unittest.cc 9 #include "third_party/WebKit/Source/WebKit/chromium/public/WebFrame.h"
15 using WebKit::WebFrame;
30 WebFrame* frame = test_shell_->webView()->mainFrame();
resource_fetcher_unittest.cc 10 #include "third_party/WebKit/Source/WebKit/chromium/public/WebFrame.h"
17 using WebKit::WebFrame;
101 WebFrame* frame = test_shell_->webView()->mainFrame();
133 WebFrame* frame = test_shell_->webView()->mainFrame();
154 WebFrame* frame = test_shell_->webView()->mainFrame();
195 WebFrame* frame = test_shell_->webView()->mainFrame();
  /external/webkit/Source/WebKit/chromium/public/
WebApplicationCacheHost.h 41 class WebFrame;
77 virtual void willStartMainResourceRequest(WebURLRequest& r, const WebFrame*) { willStartMainResourceRequest(r); }
WebDocument.h 48 class WebFrame;
68 WEBKIT_API WebFrame* frame() const;
WebDevToolsAgent.h 39 class WebFrame;
WebIDBDatabase.h 35 class WebFrame;
  /external/webkit/Source/WebKit/mac/Misc/
WebCoreStatistics.h 31 #import <WebKit/WebFrame.h>
85 @interface WebFrame (WebKitDebug)
  /external/webkit/Source/WebKit/mac/WebView/
WebFrameViewInternal.h 39 - (void)_setWebFrame:(WebFrame *)webFrame;
WebFramePrivate.h 29 // This header contains the WebFrame SPI.
31 #import <WebKit/WebFrame.h>
71 @interface WebFrame (WebPrivate)
73 - (BOOL)_isDescendantOfFrame:(WebFrame *)frame;
  /external/webkit/Tools/DumpRenderTree/chromium/
TextInputController.cpp 37 #include "WebFrame.h"
73 WebFrame* TextInputController::getMainFrame()
92 WebFrame* mainFrame = getMainFrame();
125 WebFrame* mainFrame = getMainFrame();
154 WebFrame* mainFrame = getMainFrame();
169 WebFrame* mainFrame = getMainFrame();
184 WebFrame* mainFrame = getMainFrame();
213 WebFrame* mainFrame = getMainFrame();
  /external/chromium/webkit/glue/media/
buffered_data_source.h 24 WebKit::WebFrame* frame,
28 WebKit::WebFrame* frame);
157 // A webframe for loading.
158 WebKit::WebFrame* frame_;
  /external/webkit/Source/WebKit/chromium/src/
WebWorkerBase.h 88 virtual void didCreateDataSource(WebFrame*, WebDataSource*);
89 virtual WebApplicationCacheHost* createApplicationCacheHost(WebFrame*, WebApplicationCacheHostClient*);
92 virtual bool allowDatabase(WebFrame*, const WebString& name, const WebString& displayName, unsigned long estimatedSize);
WebStorageAreaImpl.h 48 virtual void setItem(const WebString& key, const WebString& value, const WebURL& url, Result& result, WebString& oldValue, WebFrame*);
  /external/webkit/Source/WebKit/chromium/tests/
WebFrameTest.cpp 36 #include "WebFrame.h"
80 void loadFrame(WebFrame* frame, const std::string& fileName)
139 WebFrame::frameForContext(
142 WebFrame::frameForContext(
  /external/webkit/Source/WebKit/mac/Plugins/
WebBaseNetscapePluginView.h 42 @class WebFrame;
60 WebFrame *_webFrame;
109 - (WebFrame *)webFrame;
  /external/webkit/Source/WebKit/win/
WebHTMLRepresentation.h 31 class WebFrame;
36 static WebHTMLRepresentation* createInstance(WebFrame* frame);
133 WebFrame* m_frame;
  /external/webkit/Source/WebKit/android/WebCoreSupport/
ChromeClientAndroid.h 45 class WebFrame;
162 void setWebFrame(android::WebFrame* webframe);
163 android::WebFrame* webFrame() { return m_webFrame; }
196 android::WebFrame* m_webFrame;
  /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);
  /external/webkit/Source/WebKit/mac/Plugins/Hosted/
WebHostedNetscapePluginView.h 62 - (void)webFrame:(WebFrame *)webFrame didFinishLoadWithReason:(NPReason)reason;
  /external/webkit/Source/WebKit2/WebProcess/Plugins/
PluginView.h 33 #include "WebFrame.h"
50 class PluginView : public WebCore::PluginViewBase, WebCore::MediaCanStartListener, PluginController, WebFrame::LoadListener {
146 // WebFrame::LoadListener
147 virtual void didFinishLoad(WebFrame*);
148 virtual void didFailLoad(WebFrame*, bool wasCancelled);
164 typedef HashMap<RefPtr<WebFrame>, RefPtr<URLRequest> > FrameLoadMap;
  /external/webkit/Source/WebKit2/WebProcess/WebCoreSupport/
WebChromeClient.cpp 35 #include "WebFrame.h"
64 static double area(WebFrame* frame)
71 static WebFrame* findLargestFrameInFrameSet(WebPage* page)
75 WebFrame* mainFrame = page->mainFrame();
79 WebFrame* largestSoFar = 0;
84 WebFrame* childFrame = frameChildren->at<WebFrame>(i);
150 WebFrame* webFrame = frame ? static_cast<WebFrameLoaderClient*>(frame->loader()->client())->webFrame() : 0
    [all...]

Completed in 345 milliseconds

1 2 34 5 6 7 8 9