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

Side by Side Diff: net/http/http_server_properties.h

Issue 2193073003: Move shared files in net/quic/ into net/quic/core/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: io_thread_unittest.cc Created 4 years, 4 months 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
« no previous file with comments | « net/http/http_network_session.cc ('k') | net/http/http_stream_factory.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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_HTTP_HTTP_SERVER_PROPERTIES_H_ 5 #ifndef NET_HTTP_HTTP_SERVER_PROPERTIES_H_
6 #define NET_HTTP_HTTP_SERVER_PROPERTIES_H_ 6 #define NET_HTTP_HTTP_SERVER_PROPERTIES_H_
7 7
8 #include <stdint.h> 8 #include <stdint.h>
9 9
10 #include <map> 10 #include <map>
11 #include <string> 11 #include <string>
12 #include <tuple> 12 #include <tuple>
13 #include <vector> 13 #include <vector>
14 14
15 #include "base/containers/mru_cache.h" 15 #include "base/containers/mru_cache.h"
16 #include "base/macros.h" 16 #include "base/macros.h"
17 #include "base/time/time.h" 17 #include "base/time/time.h"
18 #include "net/base/host_port_pair.h" 18 #include "net/base/host_port_pair.h"
19 #include "net/base/net_export.h" 19 #include "net/base/net_export.h"
20 #include "net/quic/quic_bandwidth.h" 20 #include "net/quic/core/quic_bandwidth.h"
21 #include "net/quic/quic_server_id.h" 21 #include "net/quic/core/quic_server_id.h"
22 #include "net/socket/next_proto.h" 22 #include "net/socket/next_proto.h"
23 #include "net/spdy/spdy_framer.h" // TODO(willchan): Reconsider this. 23 #include "net/spdy/spdy_framer.h" // TODO(willchan): Reconsider this.
24 #include "net/spdy/spdy_protocol.h" 24 #include "net/spdy/spdy_protocol.h"
25 #include "url/scheme_host_port.h" 25 #include "url/scheme_host_port.h"
26 26
27 namespace base { 27 namespace base {
28 class Value; 28 class Value;
29 } 29 }
30 30
31 namespace net { 31 namespace net {
(...skipping 338 matching lines...) Expand 10 before | Expand all | Expand 10 after
370 virtual void SetMaxServerConfigsStoredInProperties( 370 virtual void SetMaxServerConfigsStoredInProperties(
371 size_t max_server_configs_stored_in_properties) = 0; 371 size_t max_server_configs_stored_in_properties) = 0;
372 372
373 private: 373 private:
374 DISALLOW_COPY_AND_ASSIGN(HttpServerProperties); 374 DISALLOW_COPY_AND_ASSIGN(HttpServerProperties);
375 }; 375 };
376 376
377 } // namespace net 377 } // namespace net
378 378
379 #endif // NET_HTTP_HTTP_SERVER_PROPERTIES_H_ 379 #endif // NET_HTTP_HTTP_SERVER_PROPERTIES_H_
OLDNEW
« no previous file with comments | « net/http/http_network_session.cc ('k') | net/http/http_stream_factory.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698