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_CRONET_ANDROID_URL_REQUEST_CONTEXT_PEER_H_ | 5 #ifndef COMPONENTS_CRONET_ANDROID_URL_REQUEST_CONTEXT_PEER_H_ |
6 #define NET_CRONET_ANDROID_URL_REQUEST_CONTEXT_PEER_H_ | 6 #define COMPONENTS_CRONET_ANDROID_URL_REQUEST_CONTEXT_PEER_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 | 9 |
10 #include "base/compiler_specific.h" | 10 #include "base/compiler_specific.h" |
11 #include "base/macros.h" | 11 #include "base/macros.h" |
12 #include "base/memory/ref_counted.h" | 12 #include "base/memory/ref_counted.h" |
13 #include "base/memory/scoped_ptr.h" | 13 #include "base/memory/scoped_ptr.h" |
14 #include "base/threading/thread.h" | 14 #include "base/threading/thread.h" |
15 #include "net/base/net_log.h" | 15 #include "net/base/net_log.h" |
16 #include "net/base/network_change_notifier.h" | 16 #include "net/base/network_change_notifier.h" |
(...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
82 scoped_ptr<net::NetLogLogger> net_log_logger_; | 82 scoped_ptr<net::NetLogLogger> net_log_logger_; |
83 | 83 |
84 virtual ~URLRequestContextPeer(); | 84 virtual ~URLRequestContextPeer(); |
85 | 85 |
86 // Initializes |context_| on the IO thread. | 86 // Initializes |context_| on the IO thread. |
87 void InitializeURLRequestContext(); | 87 void InitializeURLRequestContext(); |
88 | 88 |
89 DISALLOW_COPY_AND_ASSIGN(URLRequestContextPeer); | 89 DISALLOW_COPY_AND_ASSIGN(URLRequestContextPeer); |
90 }; | 90 }; |
91 | 91 |
92 #endif // NET_CRONET_ANDROID_URL_REQUEST_CONTEXT_PEER_H_ | 92 #endif // COMPONENTS_CRONET_ANDROID_URL_REQUEST_CONTEXT_PEER_H_ |
OLD | NEW |