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

Unified Diff: net/test/embedded_test_server/http_connection.h

Issue 15505003: GTTF: Convert most tests in content to use EmbeddedTestServer. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fixes 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_connection.h
diff --git a/net/test/embedded_test_server/http_connection.h b/net/test/embedded_test_server/http_connection.h
index da9353404c6c840498ba9713707c07b8f2f2bdae..1477a2d6a9289ccf9edd555217e106566f91ba7a 100644
--- a/net/test/embedded_test_server/http_connection.h
+++ b/net/test/embedded_test_server/http_connection.h
@@ -18,7 +18,7 @@ class StreamListenSocket;
namespace test_server {
class HttpConnection;
-class HttpResponse;
+class HttpResponseInterface;
// Calblack called when a request is parsed. Response should be sent
// using HttpConnection::SendResponse() on the |connection| argument.
@@ -35,7 +35,7 @@ class HttpConnection {
~HttpConnection();
// Sends the HTTP response to the client.
- void SendResponse(scoped_ptr<HttpResponse> response) const;
+ void SendResponse(scoped_ptr<HttpResponseInterface> response) const;
private:
friend class EmbeddedTestServer;

Powered by Google App Engine
This is Rietveld 408576698