Example #1
0
        private void internalAbort()
        {
            bool hadLoader = m_loader;

            m_error = true;

            // FIXME: when we add the support for multi-part XHR, we will have to think be careful with this initialization.
            m_receivedLength = 0;

            if (hadLoader)
            {
                m_loader.cancel();
                m_loader = 0;
            }

            m_decoder = 0;

            InspectorInstrumentation.didFailXHRLoading(scriptExecutionContext(), this);

            if (hadLoader)
                dropProtection();
        }
Example #2
0
 public EntityInfoPtr(EntityInfo methodTable)
 {
     Reference = new RefPtr { mt = methodTable };
 }
Example #3
0
 public MethodTablePtr(MethodTableInfo methodTable)
 {
     Reference = new RefPtr { mt = methodTable };
 }