Changeset 73920 in webkit


Ignore:
Timestamp:
Dec 13, 2010 8:04:07 AM (13 years ago)
Author:
yurys@chromium.org
Message:

2010-12-13 Yury Semikhatsky <yurys@chromium.org>

Unreviewed. Qt build fix.

  • dom/ScriptExecutionContext.cpp: (WebCore::ScriptExecutionContext::ScriptExecutionContext):
  • dom/ScriptExecutionContext.h:
Location:
trunk/WebCore
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebCore/ChangeLog

    r73918 r73920  
     12010-12-13  Yury Semikhatsky  <yurys@chromium.org>
     2
     3        Unreviewed. Qt build fix.
     4
     5        * dom/ScriptExecutionContext.cpp:
     6        (WebCore::ScriptExecutionContext::ScriptExecutionContext):
     7        * dom/ScriptExecutionContext.h:
     8
    192010-12-13  Mario Sanchez Prada  <msanchez@igalia.com>
    210
  • trunk/WebCore/dom/ScriptExecutionContext.cpp

    r73914 r73920  
    8383
    8484ScriptExecutionContext::ScriptExecutionContext()
     85    : m_inDispatchErrorEvent(false)
    8586#if ENABLE(DATABASE)
    86     : m_hasOpenDatabases(false)
    87 #endif
    88     , m_inDispatchErrorEvent(false)
     87    , m_hasOpenDatabases(false)
     88#endif
    8989{
    9090}
  • trunk/WebCore/dom/ScriptExecutionContext.h

    r73914 r73920  
    180180        virtual void derefScriptExecutionContext() = 0;
    181181
     182        bool m_inDispatchErrorEvent;
     183        class PendingException;
     184        OwnPtr<Vector<OwnPtr<PendingException> > > m_pendingExceptions;
     185
    182186#if ENABLE(DATABASE)
    183187        RefPtr<DatabaseThread> m_databaseThread;
     
    188192        RefPtr<FileThread> m_fileThread;
    189193#endif
    190         bool m_inDispatchErrorEvent;
    191         class PendingException;
    192         OwnPtr<Vector<OwnPtr<PendingException> > > m_pendingExceptions;
    193194    };
    194195
Note: See TracChangeset for help on using the changeset viewer.