| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2008 Apple Inc. All Rights Reserved. | 2 * Copyright (C) 2008 Apple Inc. All Rights Reserved. |
| 3 * | 3 * |
| 4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
| 5 * modification, are permitted provided that the following conditions | 5 * modification, are permitted provided that the following conditions |
| 6 * are met: | 6 * are met: |
| 7 * 1. Redistributions of source code must retain the above copyright | 7 * 1. Redistributions of source code must retain the above copyright |
| 8 * notice, this list of conditions and the following disclaimer. | 8 * notice, this list of conditions and the following disclaimer. |
| 9 * 2. Redistributions in binary form must reproduce the above copyright | 9 * 2. Redistributions in binary form must reproduce the above copyright |
| 10 * notice, this list of conditions and the following disclaimer in the | 10 * notice, this list of conditions and the following disclaimer in the |
| (...skipping 313 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 324 #include "JSUIEvent.cpp" | 324 #include "JSUIEvent.cpp" |
| 325 #include "JSValidityState.cpp" | 325 #include "JSValidityState.cpp" |
| 326 #include "JSVoidCallback.cpp" | 326 #include "JSVoidCallback.cpp" |
| 327 #include "JSWebKitAnimationEvent.cpp" | 327 #include "JSWebKitAnimationEvent.cpp" |
| 328 #include "JSWebKitCSSKeyframeRule.cpp" | 328 #include "JSWebKitCSSKeyframeRule.cpp" |
| 329 #include "JSWebKitCSSKeyframesRule.cpp" | 329 #include "JSWebKitCSSKeyframesRule.cpp" |
| 330 #include "JSWebKitCSSTransformValue.cpp" | 330 #include "JSWebKitCSSTransformValue.cpp" |
| 331 #include "JSWebKitCSSMatrix.cpp" | 331 #include "JSWebKitCSSMatrix.cpp" |
| 332 #include "JSWebKitPoint.cpp" | 332 #include "JSWebKitPoint.cpp" |
| 333 #include "JSWebKitTransitionEvent.cpp" | 333 #include "JSWebKitTransitionEvent.cpp" |
| 334 #include "JSWebSocket.cpp" |
| 334 #include "JSWheelEvent.cpp" | 335 #include "JSWheelEvent.cpp" |
| 335 #include "JSWorker.cpp" | 336 #include "JSWorker.cpp" |
| 336 #include "JSWorkerContext.cpp" | 337 #include "JSWorkerContext.cpp" |
| 337 #include "JSWorkerLocation.cpp" | 338 #include "JSWorkerLocation.cpp" |
| 338 #include "JSWorkerNavigator.cpp" | 339 #include "JSWorkerNavigator.cpp" |
| 339 #include "JSXMLHttpRequest.cpp" | 340 #include "JSXMLHttpRequest.cpp" |
| 340 #include "JSXMLHttpRequestException.cpp" | 341 #include "JSXMLHttpRequestException.cpp" |
| 341 #include "JSXMLHttpRequestProgressEvent.cpp" | 342 #include "JSXMLHttpRequestProgressEvent.cpp" |
| 342 #include "JSXMLHttpRequestUpload.cpp" | 343 #include "JSXMLHttpRequestUpload.cpp" |
| 343 #include "JSXMLSerializer.cpp" | 344 #include "JSXMLSerializer.cpp" |
| 344 #include "JSXPathEvaluator.cpp" | 345 #include "JSXPathEvaluator.cpp" |
| 345 #include "JSXPathException.cpp" | 346 #include "JSXPathException.cpp" |
| 346 #include "JSXPathExpression.cpp" | 347 #include "JSXPathExpression.cpp" |
| 347 #include "JSXPathNSResolver.cpp" | 348 #include "JSXPathNSResolver.cpp" |
| 348 #include "JSXPathResult.cpp" | 349 #include "JSXPathResult.cpp" |
| 349 #include "JSXSLTProcessor.cpp" | 350 #include "JSXSLTProcessor.cpp" |
| 350 #include "UserAgentStyleSheetsData.cpp" | 351 #include "UserAgentStyleSheetsData.cpp" |
| 351 | 352 |
| 352 // On MSVC, including StaticConstructors.h causes all global objects not to be | 353 // On MSVC, including StaticConstructors.h causes all global objects not to be |
| 353 // automatically initialized by the C runtime. This is useful in some specific | 354 // automatically initialized by the C runtime. This is useful in some specific |
| 354 // cases (e.g., the *Names.cpp files), but can be dangerous in others. We don't | 355 // cases (e.g., the *Names.cpp files), but can be dangerous in others. We don't |
| 355 // want StaticConstructors.h to "pollute" all the source files we #include here | 356 // want StaticConstructors.h to "pollute" all the source files we #include here |
| 356 // accidentally, so we'll throw an error whenever any file includes it. | 357 // accidentally, so we'll throw an error whenever any file includes it. |
| 357 #ifdef StaticConstructors_h | 358 #ifdef StaticConstructors_h |
| 358 #error Do not include any file in DerivedSources.cpp that includes StaticConstru
ctors.h | 359 #error Do not include any file in DerivedSources.cpp that includes StaticConstru
ctors.h |
| 359 #endif | 360 #endif |
| OLD | NEW |