| Index: net/http/http_status_code.cc
|
| diff --git a/net/http/http_status_code.cc b/net/http/http_status_code.cc
|
| index fb7261b3001c691d1875a16d53f08b538f68e7ba..68b7f091aab278de794ab6538cb3d5ff2c3c3476 100644
|
| --- a/net/http/http_status_code.cc
|
| +++ b/net/http/http_status_code.cc
|
| @@ -10,8 +10,9 @@ namespace net {
|
|
|
| const char* GetHttpReasonPhrase(HttpStatusCode code) {
|
| switch (code) {
|
| -
|
| -#define HTTP_STATUS(label, code, reason) case HTTP_ ## label: return reason;
|
| +#define HTTP_STATUS(label, code, reason) \
|
| + case HTTP_##label: \
|
| + return reason;
|
| #include "net/http/http_status_code_list.h"
|
| #undef HTTP_STATUS
|
|
|
|
|