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

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

Issue 2525743002: Make URLRequestContext a MemoryDumpProvider (Abandoned) (Closed)
Patch Set: Fix test Created 4 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_HTTP_HTTP_NETWORK_SESSION_H_ 5 #ifndef NET_HTTP_HTTP_NETWORK_SESSION_H_
6 #define NET_HTTP_HTTP_NETWORK_SESSION_H_ 6 #define NET_HTTP_HTTP_NETWORK_SESSION_H_
7 7
8 #include <stddef.h> 8 #include <stddef.h>
9 #include <stdint.h> 9 #include <stdint.h>
10 10
(...skipping 15 matching lines...) Expand all
26 #include "net/dns/host_resolver.h" 26 #include "net/dns/host_resolver.h"
27 #include "net/http/http_auth_cache.h" 27 #include "net/http/http_auth_cache.h"
28 #include "net/http/http_stream_factory.h" 28 #include "net/http/http_stream_factory.h"
29 #include "net/quic/chromium/quic_stream_factory.h" 29 #include "net/quic/chromium/quic_stream_factory.h"
30 #include "net/socket/next_proto.h" 30 #include "net/socket/next_proto.h"
31 #include "net/spdy/spdy_session_pool.h" 31 #include "net/spdy/spdy_session_pool.h"
32 #include "net/ssl/ssl_client_auth_cache.h" 32 #include "net/ssl/ssl_client_auth_cache.h"
33 33
34 namespace base { 34 namespace base {
35 class Value; 35 class Value;
36 namespace trace_event {
37 class MemoryAllocatorDump;
38 }
36 } 39 }
37 40
38 namespace net { 41 namespace net {
39 42
40 class CTPolicyEnforcer; 43 class CTPolicyEnforcer;
41 class CertVerifier; 44 class CertVerifier;
42 class ChannelIDService; 45 class ChannelIDService;
43 class ClientSocketFactory; 46 class ClientSocketFactory;
44 class ClientSocketPoolManager; 47 class ClientSocketPoolManager;
45 class CTVerifier; 48 class CTVerifier;
(...skipping 226 matching lines...) Expand 10 before | Expand all | Expand 10 after
272 275
273 // Populates |*alpn_protos| with protocols to be used with ALPN. 276 // Populates |*alpn_protos| with protocols to be used with ALPN.
274 void GetAlpnProtos(NextProtoVector* alpn_protos) const; 277 void GetAlpnProtos(NextProtoVector* alpn_protos) const;
275 278
276 // Populates |server_config| and |proxy_config| based on this session and 279 // Populates |server_config| and |proxy_config| based on this session and
277 // |request|. 280 // |request|.
278 void GetSSLConfig(const HttpRequestInfo& request, 281 void GetSSLConfig(const HttpRequestInfo& request,
279 SSLConfig* server_config, 282 SSLConfig* server_config,
280 SSLConfig* proxy_config) const; 283 SSLConfig* proxy_config) const;
281 284
285 // Called by associated URLRequestContext to dump memory allocation stats.
286 // |url_request_context_dump| is the MemoryAllocatorDump of the associated
287 // URLRequestContext.
288 void DumpMemoryStats(
289 base::trace_event::MemoryAllocatorDump* url_request_context_dump) const;
290
282 private: 291 private:
283 friend class HttpNetworkSessionPeer; 292 friend class HttpNetworkSessionPeer;
284 293
285 ClientSocketPoolManager* GetSocketPoolManager(SocketPoolType pool_type); 294 ClientSocketPoolManager* GetSocketPoolManager(SocketPoolType pool_type);
286 295
287 // Flush sockets on low memory notifications callback. 296 // Flush sockets on low memory notifications callback.
288 void OnMemoryPressure( 297 void OnMemoryPressure(
289 base::MemoryPressureListener::MemoryPressureLevel memory_pressure_level); 298 base::MemoryPressureListener::MemoryPressureLevel memory_pressure_level);
290 299
291 // base::MemoryCoordinatorClient implementation: 300 // base::MemoryCoordinatorClient implementation:
(...skipping 23 matching lines...) Expand all
315 NextProtoVector next_protos_; 324 NextProtoVector next_protos_;
316 325
317 Params params_; 326 Params params_;
318 327
319 std::unique_ptr<base::MemoryPressureListener> memory_pressure_listener_; 328 std::unique_ptr<base::MemoryPressureListener> memory_pressure_listener_;
320 }; 329 };
321 330
322 } // namespace net 331 } // namespace net
323 332
324 #endif // NET_HTTP_HTTP_NETWORK_SESSION_H_ 333 #endif // NET_HTTP_HTTP_NETWORK_SESSION_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698