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

Unified Diff: net/test/embedded_test_server/http_response.cc

Issue 15505003: GTTF: Convert most tests in content to use EmbeddedTestServer. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: clang Created 7 years, 7 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
Index: net/test/embedded_test_server/http_response.cc
diff --git a/net/test/embedded_test_server/http_response.cc b/net/test/embedded_test_server/http_response.cc
index 2c05c0632a0225c45ab656ed902e83862d296192..4f2bfe8a06e29b183dffa427c7ccd012aaf0c273 100644
--- a/net/test/embedded_test_server/http_response.cc
+++ b/net/test/embedded_test_server/http_response.cc
@@ -11,13 +11,16 @@
namespace net {
namespace test_server {
-HttpResponse::HttpResponse() : code_(SUCCESS) {
+HttpResponse::~HttpResponse() {
}
-HttpResponse::~HttpResponse() {
+BasicHttpResponse::BasicHttpResponse() : code_(SUCCESS) {
+}
+
+BasicHttpResponse::~BasicHttpResponse() {
}
-std::string HttpResponse::ToResponseString() const {
+std::string BasicHttpResponse::ToResponseString() const {
// Response line with headers.
std::string response_builder;
« no previous file with comments | « net/test/embedded_test_server/http_response.h ('k') | net/test/embedded_test_server/http_response_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698