Example #1
0
// WebKitClassFactory ---------------------------------------------------------
WebKitClassFactory::WebKitClassFactory(CLSID targetClass)
    : m_targetClass(targetClass)
{
    JSC::initializeThreading();
    WTF::initializeMainThread();

    gClassCount++;
    gClassNameCount().add("WebKitClassFactory");
}
Example #2
0
WebNotification::~WebNotification()
{
    if (m_name)
        SysFreeString(m_name);
    if (m_anObject)
        m_anObject->Release();
    if (m_userInfo)
        m_userInfo->Release();

    gClassCount--;
    gClassNameCount().remove("WebNotification");
}
Example #3
0
WebNotification::WebNotification(BSTR name, IUnknown* anObject, IPropertyBag* userInfo)
    : m_anObject(anObject)
    , m_userInfo(userInfo)
{
    if (name)
        m_name = SysAllocString(name);
    if (m_anObject)
        m_anObject->AddRef();
    if (m_userInfo)
        m_userInfo->AddRef();

    gClassCount++;
    gClassNameCount().add("WebNotification");
}
WebScriptObject::~WebScriptObject()
{
    gClassCount--;
    gClassNameCount().remove("WebScriptObject");
}
WebScriptObject::WebScriptObject()
    : m_refCount(0)
{
    gClassCount++;
    gClassNameCount().add("WebScriptObject");
}
Example #6
0
WebKitClassFactory::~WebKitClassFactory()
{
    gClassCount--;
    gClassNameCount().remove("WebKitClassFactory");
}
Example #7
0
WebCache::~WebCache()
{
    gClassCount--;
    gClassNameCount().remove("WebCache");
}
Example #8
0
WebCache::WebCache()
    : m_refCount(0)
{
    gClassCount++;
    gClassNameCount().add("WebCache");
}
WebApplicationCache::~WebApplicationCache()
{
    gClassCount--;
    gClassNameCount().remove("WebApplicationCache");
}
Example #10
0
WebApplicationCache::WebApplicationCache()
    : m_refCount(0)
{
    gClassCount++;
    gClassNameCount().add("WebApplicationCache");
}
Example #11
0
WebKitMessageLoop::~WebKitMessageLoop()
{
    gClassCount--;
    gClassNameCount().remove("WebKitMessageLoop");
}
Example #12
0
WebKitMessageLoop::WebKitMessageLoop()
    : m_refCount(0)
{
    gClassCount++;
    gClassNameCount().add("WebKitMessageLoop");
}
WebWorkersPrivate::~WebWorkersPrivate()
{
    gClassCount--;
    gClassNameCount().remove("WebWorkersPrivate");
}
WebWorkersPrivate::WebWorkersPrivate()
    : m_refCount(0)
{
    gClassCount++;
    gClassNameCount().add("WebWorkersPrivate");
}