Home
last modified time | relevance | path

Searched defs:COMPtr (Results 1 – 2 of 2) sorted by relevance

/external/webkit/WebCore/platform/win/
DCOMPtr.h49 COMPtr() : m_ptr(0) { } in COMPtr() function
50 COMPtr(T* ptr) : m_ptr(ptr) { if (m_ptr) m_ptr->AddRef(); } in COMPtr() function
51 COMPtr(AdoptCOMTag, T* ptr) : m_ptr(ptr) { } in COMPtr() function
52 COMPtr(const COMPtr& o) : m_ptr(o.m_ptr) { if (T* ptr = m_ptr) ptr->AddRef(); } in COMPtr() function
54 COMPtr(QueryTag, IUnknown* ptr) : m_ptr(copyQueryInterfaceRef(ptr)) { } in COMPtr() function
55 …template <typename U> COMPtr(QueryTag, const COMPtr<U>& ptr) : m_ptr(copyQueryInterfaceRef(ptr.get… in COMPtr() function
57 COMPtr(CreateTag, const IID& clsid) : m_ptr(createInstance(clsid)) { } in COMPtr() function
60 COMPtr(WTF::HashTableDeletedValueType) : m_ptr(hashTableDeletedValue()) { } in COMPtr() function
/external/webkit/WebKit/win/WebCoreSupport/
DWebFrameLoaderClient.h40 template <typename T> class COMPtr; variable