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