Index: content/browser/appcache/appcache_storage_impl_unittest.cc |
diff --git a/content/browser/appcache/appcache_storage_impl_unittest.cc b/content/browser/appcache/appcache_storage_impl_unittest.cc |
index 669db8c82076cc655f60927e30083136880287e7..59bc7d4d68c697893897b67c9c341a3e063a782d 100644 |
--- a/content/browser/appcache/appcache_storage_impl_unittest.cc |
+++ b/content/browser/appcache/appcache_storage_impl_unittest.cc |
@@ -100,16 +100,16 @@ class MockHttpServer { |
std::string* headers, |
std::string* body) { |
const char manifest_headers[] = |
- "HTTP/1.1 200 OK\0" |
- "Content-type: text/cache-manifest\0" |
- "\0"; |
+ "HTTP/1.1 200 OK\n" |
+ "Content-type: text/cache-manifest\n" |
+ "\n"; |
const char page_headers[] = |
- "HTTP/1.1 200 OK\0" |
- "Content-type: text/html\0" |
- "\0"; |
+ "HTTP/1.1 200 OK\n" |
+ "Content-type: text/html\n" |
+ "\n"; |
const char not_found_headers[] = |
- "HTTP/1.1 404 NOT FOUND\0" |
- "\0"; |
+ "HTTP/1.1 404 NOT FOUND\n" |
+ "\n"; |
if (path == "/manifest") { |
(*headers) = std::string(manifest_headers, arraysize(manifest_headers)); |