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

Unified Diff: services/http_server/http_server.cc

Issue 898343002: Copy http_status_code_list.h from /net to be owned by http_server. (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Created 5 years, 10 months 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « services/http_server/BUILD.gn ('k') | services/http_server/http_status_code_list.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: services/http_server/http_server.cc
diff --git a/services/http_server/http_server.cc b/services/http_server/http_server.cc
index 8efc6669e5a164c364b20834ffb4ddb2519ad164..aef03501f76d2d23e45fb04dadd9915f5e196b37 100644
--- a/services/http_server/http_server.cc
+++ b/services/http_server/http_server.cc
@@ -49,7 +49,7 @@ typedef base::Callback<void(HttpRequestPtr, Connection*)> HandleRequestCallback;
const char* GetHttpReasonPhrase(uint32_t code_in) {
switch (code_in) {
#define HTTP_STATUS(label, code, reason) case code: return reason;
-#include "net/http/http_status_code_list.h"
+#include "services/http_server/http_status_code_list.h"
#undef HTTP_STATUS
default:
« no previous file with comments | « services/http_server/BUILD.gn ('k') | services/http_server/http_status_code_list.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698