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

Side by Side Diff: net/url_request/url_request_context.h

Issue 2541073003: Instrument SdchManager using MemoryDumpProvider (Closed)
Patch Set: Address ssid@ comment 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 // This class represents contextual information (cookies, cache, etc.) 5 // This class represents contextual information (cookies, cache, etc.)
6 // that's necessary when processing resource requests. 6 // that's necessary when processing resource requests.
7 7
8 #ifndef NET_URL_REQUEST_URL_REQUEST_CONTEXT_H_ 8 #ifndef NET_URL_REQUEST_URL_REQUEST_CONTEXT_H_
9 #define NET_URL_REQUEST_URL_REQUEST_CONTEXT_H_ 9 #define NET_URL_REQUEST_URL_REQUEST_CONTEXT_H_
10 10
11 #include <memory> 11 #include <memory>
12 #include <set> 12 #include <set>
13 #include <string> 13 #include <string>
14 14
15 #include "base/macros.h" 15 #include "base/macros.h"
16 #include "base/memory/ref_counted.h" 16 #include "base/memory/ref_counted.h"
17 #include "base/memory/weak_ptr.h" 17 #include "base/memory/weak_ptr.h"
18 #include "base/threading/non_thread_safe.h" 18 #include "base/threading/non_thread_safe.h"
19 #include "base/trace_event/memory_dump_provider.h" 19 #include "base/trace_event/memory_dump_provider.h"
20 #include "net/base/net_export.h" 20 #include "net/base/net_export.h"
21 #include "net/base/request_priority.h" 21 #include "net/base/request_priority.h"
22 #include "net/base/sdch_manager.h"
Randy Smith (Not in Mondays) 2016/12/21 20:21:38 Why? My read of url_request_context.h is that it
xunjieli 2016/12/22 16:06:35 Done. Sorry, I meant to add it to the cc file. Tha
22 #include "net/http/http_network_session.h" 23 #include "net/http/http_network_session.h"
23 #include "net/http/http_server_properties.h" 24 #include "net/http/http_server_properties.h"
24 #include "net/http/transport_security_state.h" 25 #include "net/http/transport_security_state.h"
25 #include "net/ssl/ssl_config_service.h" 26 #include "net/ssl/ssl_config_service.h"
26 #include "net/url_request/url_request.h" 27 #include "net/url_request/url_request.h"
27 28
28 namespace base { 29 namespace base {
29 namespace trace_event { 30 namespace trace_event {
30 class ProcessMemoryDump; 31 class ProcessMemoryDump;
31 } 32 }
(...skipping 258 matching lines...) Expand 10 before | Expand all | Expand 10 after
290 // Used in MemoryDumpProvier to annotate memory usage. The name does not need 291 // Used in MemoryDumpProvier to annotate memory usage. The name does not need
291 // to be unique. 292 // to be unique.
292 std::string name_; 293 std::string name_;
293 294
294 DISALLOW_COPY_AND_ASSIGN(URLRequestContext); 295 DISALLOW_COPY_AND_ASSIGN(URLRequestContext);
295 }; 296 };
296 297
297 } // namespace net 298 } // namespace net
298 299
299 #endif // NET_URL_REQUEST_URL_REQUEST_CONTEXT_H_ 300 #endif // NET_URL_REQUEST_URL_REQUEST_CONTEXT_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698