| 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 COMPONENTS_CRONET_ANDROID_CRONET_URL_REQUEST_CONTEXT_ADAPTER_H_ | 5 #ifndef COMPONENTS_CRONET_ANDROID_CRONET_URL_REQUEST_CONTEXT_ADAPTER_H_ |
| 6 #define COMPONENTS_CRONET_ANDROID_CRONET_URL_REQUEST_CONTEXT_ADAPTER_H_ | 6 #define COMPONENTS_CRONET_ANDROID_CRONET_URL_REQUEST_CONTEXT_ADAPTER_H_ |
| 7 | 7 |
| 8 #include <jni.h> | 8 #include <jni.h> |
| 9 #include <stdint.h> |
| 9 | 10 |
| 10 #include <queue> | 11 #include <queue> |
| 11 #include <string> | 12 #include <string> |
| 12 | 13 |
| 13 #include "base/android/scoped_java_ref.h" | 14 #include "base/android/scoped_java_ref.h" |
| 14 #include "base/callback.h" | 15 #include "base/callback.h" |
| 15 #include "base/macros.h" | 16 #include "base/macros.h" |
| 16 #include "base/memory/ref_counted.h" | 17 #include "base/memory/ref_counted.h" |
| 17 #include "base/memory/scoped_ptr.h" | 18 #include "base/memory/scoped_ptr.h" |
| 18 #include "base/prefs/json_pref_store.h" | 19 #include "base/prefs/json_pref_store.h" |
| (...skipping 174 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 193 #if defined(DATA_REDUCTION_PROXY_SUPPORT) | 194 #if defined(DATA_REDUCTION_PROXY_SUPPORT) |
| 194 scoped_ptr<CronetDataReductionProxy> data_reduction_proxy_; | 195 scoped_ptr<CronetDataReductionProxy> data_reduction_proxy_; |
| 195 #endif | 196 #endif |
| 196 | 197 |
| 197 DISALLOW_COPY_AND_ASSIGN(CronetURLRequestContextAdapter); | 198 DISALLOW_COPY_AND_ASSIGN(CronetURLRequestContextAdapter); |
| 198 }; | 199 }; |
| 199 | 200 |
| 200 } // namespace cronet | 201 } // namespace cronet |
| 201 | 202 |
| 202 #endif // COMPONENTS_CRONET_ANDROID_CRONET_URL_REQUEST_CONTEXT_ADAPTER_H_ | 203 #endif // COMPONENTS_CRONET_ANDROID_CRONET_URL_REQUEST_CONTEXT_ADAPTER_H_ |
| OLD | NEW |