| 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 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 55 #include "V8CSSMediaRule.h" | 55 #include "V8CSSMediaRule.h" |
| 56 #include "V8CSSFontFaceRule.h" | 56 #include "V8CSSFontFaceRule.h" |
| 57 #include "V8CSSPageRule.h" | 57 #include "V8CSSPageRule.h" |
| 58 #include "V8CSSRuleList.h" | 58 #include "V8CSSRuleList.h" |
| 59 #include "V8CSSPrimitiveValue.h" | 59 #include "V8CSSPrimitiveValue.h" |
| 60 #include "V8CSSValue.h" | 60 #include "V8CSSValue.h" |
| 61 #include "V8CSSValueList.h" | 61 #include "V8CSSValueList.h" |
| 62 #include "V8CSSStyleSheet.h" | 62 #include "V8CSSStyleSheet.h" |
| 63 #include "V8CSSVariablesDeclaration.h" | 63 #include "V8CSSVariablesDeclaration.h" |
| 64 #include "V8CSSVariablesRule.h" | 64 #include "V8CSSVariablesRule.h" |
| 65 #include "V8DataGridColumn.h" |
| 66 #include "V8DataGridColumnList.h" |
| 65 #include "V8Database.h" | 67 #include "V8Database.h" |
| 66 #include "V8Document.h" | 68 #include "V8Document.h" |
| 67 #include "V8DocumentFragment.h" | 69 #include "V8DocumentFragment.h" |
| 68 #include "V8DocumentType.h" | 70 #include "V8DocumentType.h" |
| 69 #include "V8Element.h" | 71 #include "V8Element.h" |
| 70 #include "V8Entity.h" | 72 #include "V8Entity.h" |
| 71 #include "V8EntityReference.h" | 73 #include "V8EntityReference.h" |
| 72 #include "V8File.h" | 74 #include "V8File.h" |
| 73 #include "V8FileList.h" | 75 #include "V8FileList.h" |
| 74 #include "V8History.h" | 76 #include "V8History.h" |
| (...skipping 327 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 402 case V8ClassIndex::type: return &name##_cache_; | 404 case V8ClassIndex::type: return &name##_cache_; |
| 403 ALL_WRAPPER_TYPES(MAKE_CASE) | 405 ALL_WRAPPER_TYPES(MAKE_CASE) |
| 404 #undef MAKE_CASE | 406 #undef MAKE_CASE |
| 405 default: | 407 default: |
| 406 ASSERT(false); | 408 ASSERT(false); |
| 407 return NULL; | 409 return NULL; |
| 408 } | 410 } |
| 409 } | 411 } |
| 410 | 412 |
| 411 } // namespace WebCore | 413 } // namespace WebCore |
| OLD | NEW |