HomeSort by relevance Sort by last modified time
    Searched refs:COMPtr (Results 1 - 25 of 102) sorted by null

1 2 3 4 5

  /external/webkit/Source/WebCore/platform/win/
COMPtr.h 50 template<typename T> class COMPtr {
52 COMPtr() : m_ptr(0) { }
53 COMPtr(T* ptr) : m_ptr(ptr) { if (m_ptr) m_ptr->AddRef(); }
54 COMPtr(AdoptCOMTag, T* ptr) : m_ptr(ptr) { }
55 COMPtr(const COMPtr& o) : m_ptr(o.m_ptr) { if (T* ptr = m_ptr) ptr->AddRef(); }
57 COMPtr(QueryTag, IUnknown* ptr) : m_ptr(copyQueryInterfaceRef(ptr)) { }
58 template<typename U> COMPtr(QueryTag, const COMPtr<U>& ptr) : m_ptr(copyQueryInterfaceRef(ptr.get())) { }
60 COMPtr(CreateTag, const IID& clsid) : m_ptr(createInstance(clsid)) {
    [all...]
EditorWin.cpp 44 COMPtr<IDataObject> clipboardData;
  /external/webkit/Tools/DumpRenderTree/win/
GCControllerWin.cpp 33 #include <WebCore/COMPtr.h>
39 COMPtr<IWebJavaScriptCollector> collector;
47 COMPtr<IWebJavaScriptCollector> collector;
55 COMPtr<IWebJavaScriptCollector> collector;
LayoutTestControllerWin.cpp 42 #include <WebCore/COMPtr.h>
61 COMPtr<IWebView> webView;
67 COMPtr<IWebViewPrivate> viewPrivate;
71 COMPtr<IWebViewEditing> viewEditing;
74 COMPtr<IWebEditingDelegate> delegate;
77 COMPtr<EditingDelegate> editingDelegate(Query, viewEditing.get());
89 COMPtr<IWebView> webView;
93 COMPtr<IWebBackForwardList> backForwardList;
97 COMPtr<IWebHistoryItem> item;
115 COMPtr<IWebView> webView
    [all...]
DumpRenderTreeWin.h 46 #include <WebCore/COMPtr.h>
59 typedef HashMap<HWND, COMPtr<IWebView> > WindowToWebViewMap;
69 extern COMPtr<FrameLoadDelegate> sharedFrameLoadDelegate;
AccessibilityControllerWin.cpp 35 #include <WebCore/COMPtr.h>
70 COMPtr<IAccessible> rootAccessible = rootElement().platformUIElement();
84 return COMPtr<IAccessible>(Query, V_DISPATCH(&vFocus));
89 COMPtr<IWebView> view;
93 COMPtr<IWebViewPrivate> viewPrivate(Query, view);
103 COMPtr<IAccessible> rootAccessible;
113 COMPtr<IAccessible> parentObject;
233 COMPtr<IAccessible> parentObject;
242 COMPtr<IDispatch> childDispatch;
248 COMPtr<IAccessible> childAccessible(Query, childDispatch)
    [all...]
WorkQueueItemWin.cpp 33 #include <WebCore/COMPtr.h>
58 COMPtr<IWebFrame> targetFrame;
69 COMPtr<IWebURLRequest> request;
112 COMPtr<IWebView> webView;
116 COMPtr<IWebIBActions> webActions;
126 COMPtr<IWebView> webView;
143 COMPtr<IWebView> webView;
158 COMPtr<IWebBackForwardList> bfList;
162 COMPtr<IWebHistoryItem> item;
  /external/webkit/Source/WebKit/win/WebCoreSupport/
WebGeolocationClient.cpp 53 COMPtr<IWebGeolocationProvider> provider;
61 COMPtr<IWebGeolocationProvider> provider;
70 COMPtr<IWebGeolocationProvider> provider;
73 COMPtr<IWebGeolocationPosition> position;
84 COMPtr<IWebUIDelegate> uiDelegate;
90 COMPtr<IWebUIDelegatePrivate2> uiDelegatePrivate2(Query, uiDelegate);
97 COMPtr<WebSecurityOrigin> origin(AdoptCOM, WebSecurityOrigin::createInstance(frame->document()->securityOrigin()));
98 COMPtr<WebGeolocationPolicyListener> listener = WebGeolocationPolicyListener::createInstance(geolocation);
WebGeolocationClient.h 29 #include <WebCore/COMPtr.h>
53 COMPtr<WebView> m_webView;
WebFrameLoaderClient.cpp 117 COMPtr<IWebResourceLoadDelegate> resourceLoadDelegate;
121 COMPtr<WebMutableURLRequest> webURLRequest(AdoptCOM, WebMutableURLRequest::createInstance(request));
128 COMPtr<IWebResourceLoadDelegate> resourceLoadDelegate;
132 COMPtr<IWebResourceLoadDelegatePrivate> resourceLoadDelegatePrivate;
149 COMPtr<IWebResourceLoadDelegate> resourceLoadDelegate;
151 COMPtr<WebURLAuthenticationChallenge> webChallenge(AdoptCOM, WebURLAuthenticationChallenge::createInstance(challenge));
167 COMPtr<IWebResourceLoadDelegate> resourceLoadDelegate;
171 COMPtr<WebURLAuthenticationChallenge> webChallenge(AdoptCOM, WebURLAuthenticationChallenge::createInstance(challenge));
178 COMPtr<IWebResourceLoadDelegate> resourceLoadDelegate;
182 COMPtr<WebMutableURLRequest> webURLRequest(AdoptCOM, WebMutableURLRequest::createInstance(request))
    [all...]
WebDesktopNotificationsDelegate.h 31 #include <WebCore/COMPtr.h>
57 COMPtr<IWebDesktopNotificationsDelegate> notificationDelegate();
WebDragClient.cpp 67 COMPtr<IWebUIDelegate> delegateRef = 0;
81 COMPtr<IWebUIDelegate> delegateRef = 0;
88 COMPtr<IWebUIDelegate> delegateRef = 0;
98 COMPtr<IWebUIDelegate> uiDelegate;
103 COMPtr<IDataObject> dataObject = static_cast<ClipboardWin*>(clipboard)->dataObject();
105 COMPtr<IDataObject> newDataObject;
117 COMPtr<IDragSourceHelper> helper;
118 COMPtr<IDataObject> dataObject;
119 COMPtr<WebView> viewProtector = m_webView;
120 COMPtr<IDropSource> source
    [all...]
  /external/webkit/Source/WebKit/win/
WebURLAuthenticationChallengeSenderCFNet.cpp 35 #include <WebCore/COMPtr.h>
44 COMPtr<WebURLAuthenticationChallenge> webChallenge(Query, challenge);
55 COMPtr<WebURLAuthenticationChallenge> webChallenge(Query, challenge);
67 COMPtr<WebURLAuthenticationChallenge> webChallenge(Query, challenge);
71 COMPtr<WebURLCredential> webCredential;
WebCachedFramePlatformData.h 42 COMPtr<IWebDataSource> m_webDataSource;
WebScriptWorld.h 29 #include <WebCore/COMPtr.h>
39 static COMPtr<WebScriptWorld> createInstance();
41 static COMPtr<WebScriptWorld> findOrCreateWorld(WebCore::DOMWrapperWorld*);
49 static COMPtr<WebScriptWorld> createInstance(PassRefPtr<WebCore::DOMWrapperWorld>);
WebKitCOMAPI.cpp 32 #include <WebCore/COMPtr.h>
49 static COMPtr<IClassFactory> classFactory(const CLSID& clsid)
51 typedef HashMap<CLSID, COMPtr<IClassFactory>, CLSIDHash, CLSIDHashTraits> FactoryMap;
55 COMPtr<IClassFactory>& factory = result.first->second;
65 COMPtr<IClassFactory> factory = classFactory(rclsid);
CFDictionaryPropertyBag.h 30 #include <WebCore/COMPtr.h>
37 static COMPtr<CFDictionaryPropertyBag> createInstance();
WebDropSource.h 30 #include <WebCore/COMPtr.h>
56 COMPtr<WebView> m_webView;
WebGeolocationPolicyListener.h 30 #include <WebCore/COMPtr.h>
40 static COMPtr<WebGeolocationPolicyListener> createInstance(PassRefPtr<WebCore::Geolocation>);
WebGeolocationPosition.h 29 #include <WebCore/COMPtr.h>
37 static COMPtr<WebGeolocationPosition> createInstance();
WebSerializedJSValue.h 29 #include <WebCore/COMPtr.h>
41 static COMPtr<WebSerializedJSValue> createInstance();
WebURLAuthenticationChallenge.cpp 38 #include <WebCore/COMPtr.h>
124 COMPtr<WebURLProtectionSpace> webSpace;
129 COMPtr<WebURLCredential> webCredential(Query, proposedCredential);
133 COMPtr<WebURLResponse> webResponse;
138 COMPtr<WebError> webError;
143 COMPtr<WebURLAuthenticationChallengeSender> webSender(Query, sender);
163 COMPtr<WebURLAuthenticationChallenge> webChallenge(Query, challenge);
167 COMPtr<WebURLAuthenticationChallengeSender> webSender(Query, sender);
WebUserContentURLPattern.h 29 #include <WebCore/COMPtr.h>
39 static COMPtr<WebUserContentURLPattern> createInstance();
WebURLAuthenticationChallengeSenderCurl.cpp 35 #include <WebCore/COMPtr.h>
  /external/webkit/Tools/WebKitAPITest/tests/
WebViewDestruction.cpp 29 #include <WebCore/COMPtr.h>
44 COMPtr<IWebKitStatistics> statistics;
53 static void createAndInitializeWebView(COMPtr<IWebView>& outWebView, HostWindow& window, HWND& viewWindow)
55 COMPtr<IWebView> webView;
62 COMPtr<IWebViewPrivate> viewPrivate(Query, webView);
83 static void finishWebViewDestructionTest(COMPtr<IWebView>& webView, HWND viewWindow)
101 COMPtr<IWebView> webView;
109 COMPtr<IWebView> webView;
120 COMPtr<IWebView> webView;
131 COMPtr<IWebView> webView
    [all...]

Completed in 266 milliseconds

1 2 3 4 5