OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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_SDCH_SDCH_OWNER_H_ | 5 #ifndef NET_SDCH_SDCH_OWNER_H_ |
6 #define NET_SDCH_SDCH_OWNER_H_ | 6 #define NET_SDCH_SDCH_OWNER_H_ |
7 | 7 |
8 #include <stddef.h> | 8 #include <stddef.h> |
9 #include <stdint.h> | 9 #include <stdint.h> |
10 | 10 |
11 #include <map> | 11 #include <map> |
12 #include <string> | 12 #include <string> |
13 | 13 |
14 #include "base/macros.h" | 14 #include "base/macros.h" |
15 #include "base/memory/memory_coordinator_client.h" | 15 #include "base/memory/memory_coordinator_client.h" |
16 #include "base/memory/memory_pressure_listener.h" | 16 #include "base/memory/memory_pressure_listener.h" |
17 #include "base/memory/ref_counted.h" | 17 #include "base/memory/ref_counted.h" |
| 18 #include "net/base/net_export.h" |
18 #include "net/base/sdch_observer.h" | 19 #include "net/base/sdch_observer.h" |
19 #include "net/url_request/sdch_dictionary_fetcher.h" | 20 #include "net/url_request/sdch_dictionary_fetcher.h" |
20 | 21 |
21 class GURL; | 22 class GURL; |
22 | 23 |
23 namespace base { | 24 namespace base { |
24 class Clock; | 25 class Clock; |
25 } | 26 } |
26 | 27 |
27 namespace net { | 28 namespace net { |
(...skipping 242 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
270 // Creation time for this SdchOwner object, used for reporting temporal memory | 271 // Creation time for this SdchOwner object, used for reporting temporal memory |
271 // pressure. | 272 // pressure. |
272 base::Time creation_time_; | 273 base::Time creation_time_; |
273 | 274 |
274 DISALLOW_COPY_AND_ASSIGN(SdchOwner); | 275 DISALLOW_COPY_AND_ASSIGN(SdchOwner); |
275 }; | 276 }; |
276 | 277 |
277 } // namespace net | 278 } // namespace net |
278 | 279 |
279 #endif // NET_SDCH_SDCH_OWNER_H_ | 280 #endif // NET_SDCH_SDCH_OWNER_H_ |
OLD | NEW |