| OLD | NEW |
| 1 // Copyright (c) 2008, Google Inc. | 1 // Copyright (c) 2008, Google Inc. |
| 2 // All rights reserved. | 2 // 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 are | 5 // modification, are permitted provided that the following conditions are |
| 6 // met: | 6 // met: |
| 7 // | 7 // |
| 8 // * Redistributions of source code must retain the above copyright | 8 // * Redistributions of source code must retain the above copyright |
| 9 // notice, this list of conditions and the following disclaimer. | 9 // notice, this list of conditions and the following disclaimer. |
| 10 // * Redistributions in binary form must reproduce the above | 10 // * Redistributions in binary form must reproduce the above |
| (...skipping 184 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 195 #include "V8XPathNSResolver.h" | 195 #include "V8XPathNSResolver.h" |
| 196 #include "V8XMLHttpRequest.h" | 196 #include "V8XMLHttpRequest.h" |
| 197 #include "V8XMLHttpRequestException.h" | 197 #include "V8XMLHttpRequestException.h" |
| 198 #include "V8XMLHttpRequestProgressEvent.h" | 198 #include "V8XMLHttpRequestProgressEvent.h" |
| 199 #include "V8XMLHttpRequestUpload.h" | 199 #include "V8XMLHttpRequestUpload.h" |
| 200 #include "V8XMLSerializer.h" | 200 #include "V8XMLSerializer.h" |
| 201 #include "V8XPathEvaluator.h" | 201 #include "V8XPathEvaluator.h" |
| 202 #include "V8XSLTProcessor.h" | 202 #include "V8XSLTProcessor.h" |
| 203 #include "V8RGBColor.h" | 203 #include "V8RGBColor.h" |
| 204 | 204 |
| 205 #if ENABLE(DOM_STORAGE) |
| 206 #include "V8Storage.h" |
| 207 #include "V8StorageEvent.h" |
| 208 #endif |
| 209 |
| 205 #if ENABLE(SVG_ANIMATION) | 210 #if ENABLE(SVG_ANIMATION) |
| 206 #include "V8SVGAnimateColorElement.h" | 211 #include "V8SVGAnimateColorElement.h" |
| 207 #include "V8SVGAnimateElement.h" | 212 #include "V8SVGAnimateElement.h" |
| 208 #include "V8SVGAnimateTransformElement.h" | 213 #include "V8SVGAnimateTransformElement.h" |
| 209 #include "V8SVGAnimationElement.h" | 214 #include "V8SVGAnimationElement.h" |
| 210 #include "V8SVGSetElement.h" | 215 #include "V8SVGSetElement.h" |
| 211 #endif | 216 #endif |
| 212 | 217 |
| 213 #if ENABLE(SVG_FILTERS) | 218 #if ENABLE(SVG_FILTERS) |
| 214 #include "V8SVGComponentTransferFunctionElement.h" | 219 #include "V8SVGComponentTransferFunctionElement.h" |
| (...skipping 179 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 394 case V8ClassIndex::type: return &name##_cache_; | 399 case V8ClassIndex::type: return &name##_cache_; |
| 395 ALL_WRAPPER_TYPES(MAKE_CASE) | 400 ALL_WRAPPER_TYPES(MAKE_CASE) |
| 396 #undef MAKE_CASE | 401 #undef MAKE_CASE |
| 397 default: | 402 default: |
| 398 ASSERT(false); | 403 ASSERT(false); |
| 399 return NULL; | 404 return NULL; |
| 400 } | 405 } |
| 401 } | 406 } |
| 402 | 407 |
| 403 } // namespace WebCore | 408 } // namespace WebCore |
| OLD | NEW |