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

Side by Side Diff: chrome/browser/google_apis/test_server/http_response.h

Issue 11088073: HTTP server for testing Google Drive. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Addressed most comments. 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 unified diff | Download patch
OLDNEW
(Empty)
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef CHROME_BROWSER_GOOGLE_APIS_TEST_SERVER_HTTP_RESPONSE_H_
6 #define CHROME_BROWSER_GOOGLE_APIS_TEST_SERVER_HTTP_RESPONSE_H_
7
8 #include <string>
9 #include <map>
10 #include "base/basictypes.h"
11
12 namespace drive {
13 namespace test_server {
14
15 enum ResponseCode {
16 SUCCESS = 200,
17 MOVED = 301,
18 NOT_FOUND = 404,
19 ACCESS_DENIED = 500,
20 };
21
22 // Respresents a HTTP response. Since it can be big, it may be better to use
23 // scoped_ptr to pass it instead of copying.
24 struct HttpResponse {
25 HttpResponse();
26 ~HttpResponse();
27
28 ResponseCode code;
29 std::string content;
30 std::string content_type;
31 std::map<std::string, std::string> custom_headers;
32
33 // Generates and returns a http response string.
34 std::string ToResponseString() const;
35 };
36
37 } // namespace test_servers
38 } // namespace drive
39
40 #endif // CHROME_BROWSER_GOOGLE_APIS_TEST_SERVER_HTTP_RESPONSE_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698