/external/webkit/WebKitTools/DumpRenderTree/win/ |
FrameLoadDelegate.cpp | 30 #include "FrameLoadDelegate.h" 49 static FrameLoadDelegate* g_delegateWaitingOnTimer; 83 FrameLoadDelegate::FrameLoadDelegate() 90 FrameLoadDelegate::~FrameLoadDelegate() 94 HRESULT STDMETHODCALLTYPE FrameLoadDelegate::QueryInterface(REFIID riid, void** ppvObject) 112 ULONG STDMETHODCALLTYPE FrameLoadDelegate::AddRef(void) 117 ULONG STDMETHODCALLTYPE FrameLoadDelegate::Release(void) 127 HRESULT STDMETHODCALLTYPE FrameLoadDelegate::didStartProvisionalLoadForFrame( [all...] |
FrameLoadDelegate.h | 38 class FrameLoadDelegate : public IWebFrameLoadDelegate, public IWebFrameLoadDelegatePrivate2 { 40 FrameLoadDelegate(); 41 virtual ~FrameLoadDelegate();
|
DumpRenderTreeWin.h | 35 struct FrameLoadDelegate; 64 extern COMPtr<FrameLoadDelegate> sharedFrameLoadDelegate;
|
AccessibilityControllerWin.cpp | 31 #include "FrameLoadDelegate.h"
|
DumpRenderTree.cpp | 33 #include "FrameLoadDelegate.h" 97 COMPtr<FrameLoadDelegate> sharedFrameLoadDelegate; [all...] |
AccessibilityUIElementWin.cpp | 31 #include "FrameLoadDelegate.h"
|
DumpRenderTree.vcproj | [all...] |
/external/webkit/WebKit/win/WebCoreSupport/ |
WebFrameLoaderClient.cpp | 280 COMPtr<IWebFrameLoadDelegate> frameLoadDelegate; 281 if (SUCCEEDED(webView->frameLoadDelegate(&frameLoadDelegate))) 282 frameLoadDelegate->didReceiveServerRedirectForProvisionalLoadForFrame(webView, m_webFrame); 288 COMPtr<IWebFrameLoadDelegate> frameLoadDelegate; 289 if (SUCCEEDED(webView->frameLoadDelegate(&frameLoadDelegate))) 290 frameLoadDelegate->didCancelClientRedirectForFrame(webView, m_webFrame); 296 COMPtr<IWebFrameLoadDelegate> frameLoadDelegate; 297 if (SUCCEEDED(webView->frameLoadDelegate(&frameLoadDelegate)) [all...] |
/external/webkit/WebKit/mac/WebView/ |
WebDocumentLoaderMac.mm | 47 id frameLoadDelegate = [webView frameLoadDelegate]; 48 if (!frameLoadDelegate) 51 NSString *bundleIdentifier = [[NSBundle bundleForClass:[frameLoadDelegate class]] bundleIdentifier];
|
WebViewData.h | 65 id frameLoadDelegate;
|
WebDelegateImplementationCaching.mm | 485 return CallDelegate(implementation, self, self->_private->frameLoadDelegate, selector); 490 return CallDelegate(implementation, self, self->_private->frameLoadDelegate, selector, object); 495 return CallDelegate(implementation, self, self->_private->frameLoadDelegate, selector, object1, object2); 500 return CallDelegate(implementation, self, self->_private->frameLoadDelegate, selector, object1, object2, object3); 505 return CallDelegate(implementation, self, self->_private->frameLoadDelegate, selector, object1, object2, object3, object4); 510 return CallDelegate(implementation, self, self->_private->frameLoadDelegate, selector, object1, interval, object2, object3);
|
WebView.h | 271 @method frameLoadDelegate 275 - (id)frameLoadDelegate;
|
WebView.mm | [all...] |
/external/webkit/WebKitTools/DumpRenderTree/mac/ |
FrameLoadDelegate.h | 34 @interface FrameLoadDelegate : NSObject
|
DumpRenderTree.mm | 40 #import "FrameLoadDelegate.h" 121 static FrameLoadDelegate *frameLoadDelegate; 286 [webView setFrameLoadDelegate:frameLoadDelegate]; 522 frameLoadDelegate = [[FrameLoadDelegate alloc] init]; 540 releaseAndZero(&frameLoadDelegate); [all...] |
FrameLoadDelegate.mm | 31 #import "FrameLoadDelegate.h" 94 @implementation FrameLoadDelegate
|
/external/webkit/WebKitTools/DumpRenderTree/DumpRenderTree.xcodeproj/ |
project.pbxproj | 90 BCA18B630C9B08C200114369 /* FrameLoadDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = BCA18B590C9B08C200114369 /* FrameLoadDelegate.h */; }; 91 BCA18B640C9B08C200114369 /* FrameLoadDelegate.mm in Sources */ = {isa = PBXBuildFile; fileRef = BCA18B5A0C9B08C200114369 /* FrameLoadDelegate.mm */; }; 237 BCA18B590C9B08C200114369 /* FrameLoadDelegate.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = FrameLoadDelegate.h; path = mac/FrameLoadDelegate.h; sourceTree = "<group>"; }; 238 BCA18B5A0C9B08C200114369 /* FrameLoadDelegate.mm */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.objcpp; name = FrameLoadDelegate.mm; path = mac/FrameLoadDelegate.mm; sourceTree = "<group>"; } [all...] |
/external/webkit/WebKit/win/ |
WebFrame.cpp | [all...] |
WebView.h | 128 virtual HRESULT STDMETHODCALLTYPE frameLoadDelegate( [all...] |
WebView.cpp | [all...] |
/external/webkit/WebKitTools/ |
ChangeLog-2009-06-16 | 222 * DumpRenderTree/mac/FrameLoadDelegate.mm: 223 (-[FrameLoadDelegate dealloc]): 252 * DumpRenderTree/mac/FrameLoadDelegate.mm: 253 (-[FrameLoadDelegate webView:didFailProvisionalLoadWithError:forFrame:]): 283 * DumpRenderTree/mac/FrameLoadDelegate.mm: 284 (-[FrameLoadDelegate webView:didCommitLoadForFrame:]): [all...] |
ChangeLog | [all...] |
/external/webkit/WebKit/win/Interfaces/ |
IWebView.idl | 285 @method frameLoadDelegate 288 - (id)frameLoadDelegate; 290 HRESULT frameLoadDelegate([retval, out] IWebFrameLoadDelegate** d); [all...] |
/external/webkit/WebCore/loader/ |
MainResourceLoader.cpp | 77 // document loaders. Also, receivedMainResourceError ends up calling a FrameLoadDelegate method
|
/external/webkit/WebKit/qt/WebCoreSupport/ |
FrameLoaderClientQt.cpp | 94 // Compare with WebKitTools/DumpRenderTree/mac/FrameLoadDelegate.mm [all...] |