Ignore:
Timestamp:
Jul 6, 2008, 7:49:29 PM (17 years ago)
Author:
[email protected]
Message:

JavaScriptCore:

2008-07-06 Sam Weinig <[email protected]>

Reviewed by Cameron Zwarich.

Second step in broad cleanup effort.

[ File list elided ]

WebCore:

2008-07-06 Sam Weinig <[email protected]>

Reviewed by Cameron Zwarich.

Add #include for kjs/protect.h.

  • xml/XMLHttpRequest.cpp: (WebCore::XMLHttpRequest::loadRequestAsynchronously):
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/kjs/PropertyNameArray.h

    r34947 r35027  
    1 // -*- mode: c++; c-basic-offset: 4 -*-
    21/*
    32 *  Copyright (C) 2006, 2008 Apple Inc. All rights reserved.
     
    3534        typedef Vector<Identifier>::const_iterator const_iterator;
    3635
    37         PropertyNameArray(JSGlobalData* globalData) : m_globalData(globalData) {}
    38         PropertyNameArray(ExecState* exec) : m_globalData(&exec->globalData()) {}
     36        PropertyNameArray(JSGlobalData* globalData)
     37            : m_globalData(globalData)
     38        {
     39        }
     40
     41        PropertyNameArray(ExecState* exec)
     42            : m_globalData(&exec->globalData())
     43        {
     44        }
    3945
    4046        JSGlobalData* globalData() { return m_globalData; }
Note: See TracChangeset for help on using the changeset viewer.