| OLD | NEW |
| 1 %{ | 1 %{ |
| 2 #include "core/platform/HashTools.h" | 2 #include "platform/HashTools.h" |
| 3 #include <string.h> | 3 #include <string.h> |
| 4 | 4 |
| 5 namespace WebCore { | 5 namespace WebCore { |
| 6 %} | 6 %} |
| 7 %struct-type | 7 %struct-type |
| 8 struct NamedColor; | 8 struct NamedColor; |
| 9 %omit-struct-type | 9 %omit-struct-type |
| 10 %language=C++ | 10 %language=C++ |
| 11 %readonly-tables | 11 %readonly-tables |
| 12 %global-table | 12 %global-table |
| (...skipping 153 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 166 whitesmoke, 0xfff5f5f5 | 166 whitesmoke, 0xfff5f5f5 |
| 167 yellow, 0xffffff00 | 167 yellow, 0xffffff00 |
| 168 yellowgreen, 0xff9acd32 | 168 yellowgreen, 0xff9acd32 |
| 169 %% | 169 %% |
| 170 const struct NamedColor* findColor(register const char* str, register unsigned i
nt len) | 170 const struct NamedColor* findColor(register const char* str, register unsigned i
nt len) |
| 171 { | 171 { |
| 172 return ColorDataHash::findColorImpl(str, len); | 172 return ColorDataHash::findColorImpl(str, len); |
| 173 } | 173 } |
| 174 | 174 |
| 175 } // namespace WebCore | 175 } // namespace WebCore |
| OLD | NEW |