| Index: net/test/embedded_test_server/http_request.h
|
| diff --git a/net/test/embedded_test_server/http_request.h b/net/test/embedded_test_server/http_request.h
|
| index 9a142e81917184d62ebdb682e396c19425da5a13..c29937856642206eb643ab6955132747cddf9d2b 100644
|
| --- a/net/test/embedded_test_server/http_request.h
|
| +++ b/net/test/embedded_test_server/http_request.h
|
| @@ -11,7 +11,6 @@
|
| #include "base/basictypes.h"
|
| #include "base/memory/scoped_ptr.h"
|
| #include "base/strings/string_piece.h"
|
| -#include "url/gurl.h"
|
|
|
| namespace net {
|
|
|
| @@ -28,7 +27,6 @@
|
| METHOD_PUT,
|
| METHOD_DELETE,
|
| METHOD_PATCH,
|
| - METHOD_CONNECT,
|
| };
|
|
|
| // Represents a HTTP request. Since it can be big, use scoped_ptr to pass it
|
| @@ -37,10 +35,6 @@
|
| struct HttpRequest {
|
| HttpRequest();
|
| ~HttpRequest();
|
| -
|
| - // Returns a GURL as a convenience to extract the path and query strings.
|
| - // TODO(svaldez): Use provided URL if available.
|
| - GURL GetURL() const;
|
|
|
| std::string relative_url; // Starts with '/'. Example: "/test?query=foo"
|
| HttpMethod method;
|
|
|