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

Side by Side Diff: net/test/embedded_test_server/http_request.h

Issue 1535363003: Switch to standard integer types in net/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: stddef Created 5 years 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
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 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 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef NET_TEST_EMBEDDED_TEST_SERVER_HTTP_REQUEST_H_ 5 #ifndef NET_TEST_EMBEDDED_TEST_SERVER_HTTP_REQUEST_H_
6 #define NET_TEST_EMBEDDED_TEST_SERVER_HTTP_REQUEST_H_ 6 #define NET_TEST_EMBEDDED_TEST_SERVER_HTTP_REQUEST_H_
7 7
8 #include <stddef.h>
9
8 #include <map> 10 #include <map>
9 #include <string> 11 #include <string>
10 12
11 #include "base/basictypes.h" 13 #include "base/macros.h"
12 #include "base/memory/scoped_ptr.h" 14 #include "base/memory/scoped_ptr.h"
13 #include "base/strings/string_piece.h" 15 #include "base/strings/string_piece.h"
14 #include "url/gurl.h" 16 #include "url/gurl.h"
15 17
16 namespace net { 18 namespace net {
17 19
18 class HttpChunkedDecoder; 20 class HttpChunkedDecoder;
19 21
20 namespace test_server { 22 namespace test_server {
21 23
(...skipping 97 matching lines...) Expand 10 before | Expand all | Expand 10 after
119 121
120 scoped_ptr<HttpChunkedDecoder> chunked_decoder_; 122 scoped_ptr<HttpChunkedDecoder> chunked_decoder_;
121 123
122 DISALLOW_COPY_AND_ASSIGN(HttpRequestParser); 124 DISALLOW_COPY_AND_ASSIGN(HttpRequestParser);
123 }; 125 };
124 126
125 } // namespace test_server 127 } // namespace test_server
126 } // namespace net 128 } // namespace net
127 129
128 #endif // NET_TEST_EMBEDDED_TEST_SERVER_HTTP_REQUEST_H_ 130 #endif // NET_TEST_EMBEDDED_TEST_SERVER_HTTP_REQUEST_H_
OLDNEW
« no previous file with comments | « net/test/embedded_test_server/http_connection.h ('k') | net/test/embedded_test_server/http_response.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698