| Index: webkit/glue/plugins/plugin_host.cc
|
| ===================================================================
|
| --- webkit/glue/plugins/plugin_host.cc (revision 23450)
|
| +++ webkit/glue/plugins/plugin_host.cc (working copy)
|
| @@ -201,7 +201,7 @@
|
| case GETNAME:
|
| // Got a value.
|
| value = std::string(start, ptr - start);
|
| - TrimWhitespace(value, TRIM_ALL, &value);
|
| + TrimWhitespaceASCII(value, TRIM_ALL, &value);
|
| // If the name field is empty, we'll skip this header
|
| // but we won't error out.
|
| if (!name.empty() && name != "content-length") {
|
| @@ -213,7 +213,7 @@
|
| case GETVALUE:
|
| // Got a header.
|
| name = StringToLowerASCII(std::string(start, ptr - start));
|
| - TrimWhitespace(name, TRIM_ALL, &name);
|
| + TrimWhitespaceASCII(name, TRIM_ALL, &name);
|
| start = ptr + 1;
|
| break;
|
| case GETDATA:
|
|
|