| 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 20 matching lines...) Expand all Loading... |
| 31 | 31 |
| 32 #include "v8_index.h" | 32 #include "v8_index.h" |
| 33 | 33 |
| 34 // TODO: Can we use a macro to include necessary headers by using | 34 // TODO: Can we use a macro to include necessary headers by using |
| 35 // WRAPPER_TYPES? | 35 // WRAPPER_TYPES? |
| 36 #include "V8Attr.h" | 36 #include "V8Attr.h" |
| 37 #include "V8BarInfo.h" | 37 #include "V8BarInfo.h" |
| 38 #include "V8CanvasRenderingContext2D.h" | 38 #include "V8CanvasRenderingContext2D.h" |
| 39 #include "V8CanvasGradient.h" | 39 #include "V8CanvasGradient.h" |
| 40 #include "V8CanvasPattern.h" | 40 #include "V8CanvasPattern.h" |
| 41 #include "V8CanvasPixelArray.h" |
| 41 #include "V8CDATASection.h" | 42 #include "V8CDATASection.h" |
| 42 #include "V8CharacterData.h" | 43 #include "V8CharacterData.h" |
| 43 #include "V8Clipboard.h" | 44 #include "V8Clipboard.h" |
| 44 #include "V8Comment.h" | 45 #include "V8Comment.h" |
| 45 #include "V8Console.h" | 46 #include "V8Console.h" |
| 46 #include "V8Counter.h" | 47 #include "V8Counter.h" |
| 47 #include "V8CSSStyleDeclaration.h" | 48 #include "V8CSSStyleDeclaration.h" |
| 48 #include "V8CSSRule.h" | 49 #include "V8CSSRule.h" |
| 49 #include "V8CSSStyleRule.h" | 50 #include "V8CSSStyleRule.h" |
| 50 #include "V8CSSCharsetRule.h" | 51 #include "V8CSSCharsetRule.h" |
| (...skipping 327 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 378 case V8ClassIndex::type: return &name##_cache_; | 379 case V8ClassIndex::type: return &name##_cache_; |
| 379 ALL_WRAPPER_TYPES(MAKE_CASE) | 380 ALL_WRAPPER_TYPES(MAKE_CASE) |
| 380 #undef MAKE_CASE | 381 #undef MAKE_CASE |
| 381 default: | 382 default: |
| 382 ASSERT(false); | 383 ASSERT(false); |
| 383 return NULL; | 384 return NULL; |
| 384 } | 385 } |
| 385 } | 386 } |
| 386 | 387 |
| 387 } // namespace WebCore | 388 } // namespace WebCore |
| OLD | NEW |