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

Unified Diff: chrome/browser/google_apis/test_server/http_connection.h

Issue 11275306: Revert 167627 - HTTP server for testing Google APIs (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 8 years, 1 month 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 | « chrome/browser/google_apis/DEPS ('k') | chrome/browser/google_apis/test_server/http_connection.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/google_apis/test_server/http_connection.h
===================================================================
--- chrome/browser/google_apis/test_server/http_connection.h (revision 167628)
+++ chrome/browser/google_apis/test_server/http_connection.h (working copy)
@@ -1,56 +0,0 @@
-// Copyright (c) 2012 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#ifndef CHROME_BROWSER_GOOGLE_APIS_TEST_SERVER_HTTP_CONNECTION_H_
-#define CHROME_BROWSER_GOOGLE_APIS_TEST_SERVER_HTTP_CONNECTION_H_
-
-#include <string>
-
-#include "base/basictypes.h"
-#include "base/string_piece.h"
-#include "chrome/browser/google_apis/test_server/http_request.h"
-#include "net/base/stream_listen_socket.h"
-
-namespace drive {
-namespace test_server {
-
-class HttpConnection;
-class HttpResponse;
-
-// Calblack called when a request is parsed. Response should be sent
-// using HttpConnection::SendResponse() on the |connection| argument.
-typedef base::Callback<void(HttpConnection* connection,
- scoped_ptr<HttpRequest> request)>
- HandleRequestCallback;
-
-// Wraps the connection socket. Accepts incoming data and sends responses.
-// If a valid request is parsed, then |callback_| is invoked.
-class HttpConnection {
- public:
- HttpConnection(net::StreamListenSocket* socket,
- const HandleRequestCallback& callback);
- ~HttpConnection();
-
- // Sends the HTTP response to the client.
- void SendResponse(scoped_ptr<HttpResponse> response) const;
-
- private:
- friend class HttpServer;
-
- // Accepts raw chunk of data from the client. Internally, passes it to the
- // HttpRequestParser class. If a request is parsed, then |callback_| is
- // called.
- void ReceiveData(const base::StringPiece& data);
-
- scoped_refptr<net::StreamListenSocket> socket_;
- const HandleRequestCallback callback_;
- HttpRequestParser request_parser_;
-
- DISALLOW_COPY_AND_ASSIGN(HttpConnection);
-};
-
-} // namespace test_server
-} // namespace drive
-
-#endif // CHROME_BROWSER_GOOGLE_APIS_TEST_SERVER_HTTP_CONNECTION_H_
« no previous file with comments | « chrome/browser/google_apis/DEPS ('k') | chrome/browser/google_apis/test_server/http_connection.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698