OLD | NEW |
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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_SPDY_SPDY_SETTING_STORAGE_H_ | 5 #ifndef NET_SPDY_SPDY_SETTING_STORAGE_H_ |
6 #define NET_SPDY_SPDY_SETTING_STORAGE_H_ | 6 #define NET_SPDY_SPDY_SETTING_STORAGE_H_ |
7 #pragma once | 7 #pragma once |
8 | 8 |
9 #include <map> | 9 #include <map> |
10 #include "base/basictypes.h" | 10 #include "base/basictypes.h" |
11 #include "net/base/host_port_pair.h" | 11 #include "net/base/host_port_pair.h" |
12 #include "net/spdy/spdy_framer.h" | 12 #include "net/spdy/spdy_framer.h" |
13 | 13 |
14 namespace net { | 14 namespace net { |
15 | 15 |
16 // SpdySettingsStorage stores SpdySettings which have been transmitted between | 16 // SpdySettingsStorage stores SpdySettings which have been transmitted between |
17 // endpoints for the SPDY SETTINGS frame. | 17 // endpoints for the SPDY SETTINGS frame. |
18 class SpdySettingsStorage { | 18 class SpdySettingsStorage { |
19 public: | 19 public: |
20 SpdySettingsStorage(); | 20 SpdySettingsStorage(); |
| 21 ~SpdySettingsStorage(); |
21 | 22 |
22 // Get a copy of the SpdySettings stored for a host. | 23 // Get a copy of the SpdySettings stored for a host. |
23 // If no settings are stored, returns an empty set of settings. | 24 // If no settings are stored, returns an empty set of settings. |
24 const spdy::SpdySettings& Get(const HostPortPair& host_port_pair) const; | 25 const spdy::SpdySettings& Get(const HostPortPair& host_port_pair) const; |
25 | 26 |
26 // Save settings for a host. | 27 // Save settings for a host. |
27 void Set(const HostPortPair& host_port_pair, | 28 void Set(const HostPortPair& host_port_pair, |
28 const spdy::SpdySettings& settings); | 29 const spdy::SpdySettings& settings); |
29 | 30 |
30 private: | 31 private: |
31 typedef std::map<HostPortPair, spdy::SpdySettings> SettingsMap; | 32 typedef std::map<HostPortPair, spdy::SpdySettings> SettingsMap; |
32 | 33 |
33 SettingsMap settings_map_; | 34 SettingsMap settings_map_; |
34 | 35 |
35 DISALLOW_COPY_AND_ASSIGN(SpdySettingsStorage); | 36 DISALLOW_COPY_AND_ASSIGN(SpdySettingsStorage); |
36 }; | 37 }; |
37 | 38 |
38 } // namespace net | 39 } // namespace net |
39 | 40 |
40 #endif // NET_SPDY_SPDY_SETTING_STORAGE_H_ | 41 #endif // NET_SPDY_SPDY_SETTING_STORAGE_H_ |
41 | 42 |
OLD | NEW |