Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(484)

Side by Side Diff: Source/platform/ColorData.gperf

Issue 42313002: Move Color.*, DashArray and DrawLooper to Source/platform/ (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: correct patch set 1 mistake Created 7 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698