Index: mojo/services/network/http_connection_impl.h |
diff --git a/mojo/services/network/http_connection_impl.h b/mojo/services/network/http_connection_impl.h |
index 79fc72dbf46c011051d2f3684d366548817eb3ec..526a688ba2c6e7ef9ae773c37b50922a4bbbdcf1 100644 |
--- a/mojo/services/network/http_connection_impl.h |
+++ b/mojo/services/network/http_connection_impl.h |
@@ -13,7 +13,6 @@ |
#include "mojo/services/network/public/interfaces/http_connection.mojom.h" |
#include "mojo/services/network/public/interfaces/http_message.mojom.h" |
#include "third_party/mojo/src/mojo/public/cpp/bindings/binding.h" |
-#include "third_party/mojo/src/mojo/public/cpp/bindings/error_handler.h" |
namespace net { |
class HttpServerRequestInfo; |
@@ -23,8 +22,7 @@ namespace mojo { |
class HttpServerImpl; |
-class HttpConnectionImpl : public HttpConnection, |
- public ErrorHandler { |
+class HttpConnectionImpl : public HttpConnection { |
public: |
// |server| must outlive this object. |
HttpConnectionImpl(int connection_id, |
@@ -49,9 +47,6 @@ class HttpConnectionImpl : public HttpConnection, |
uint32_t size, |
const SetReceiveBufferSizeCallback& callback) override; |
- // ErrorHandler implementation. |
- void OnConnectionError() override; |
- |
void OnFinishedReadingResponseBody(HttpResponsePtr response_ptr, |
SimpleDataPipeReader* reader, |
scoped_ptr<std::string> body); |