| 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 ANDROID_WEBVIEW_NATIVE_INTERCEPTED_REQUEST_DATA_IMPL_H_ | 5 #ifndef ANDROID_WEBVIEW_NATIVE_INTERCEPTED_REQUEST_DATA_IMPL_H_ |
| 6 #define ANDROID_WEBVIEW_NATIVE_INTERCEPTED_REQUEST_DATA_IMPL_H_ | 6 #define ANDROID_WEBVIEW_NATIVE_INTERCEPTED_REQUEST_DATA_IMPL_H_ |
| 7 | 7 |
| 8 #include "android_webview/browser/aw_web_resource_response.h" | 8 #include "android_webview/browser/net/aw_web_resource_response.h" |
| 9 #include "base/android/scoped_java_ref.h" | 9 #include "base/android/scoped_java_ref.h" |
| 10 #include "base/compiler_specific.h" | 10 #include "base/compiler_specific.h" |
| 11 #include "base/memory/scoped_ptr.h" | 11 #include "base/memory/scoped_ptr.h" |
| 12 | 12 |
| 13 namespace net { | 13 namespace net { |
| 14 class HttpResponseHeaders; | 14 class HttpResponseHeaders; |
| 15 } | 15 } |
| 16 | 16 |
| 17 namespace android_webview { | 17 namespace android_webview { |
| 18 | 18 |
| (...skipping 19 matching lines...) Expand all Loading... |
| 38 base::android::ScopedJavaGlobalRef<jobject> java_object_; | 38 base::android::ScopedJavaGlobalRef<jobject> java_object_; |
| 39 | 39 |
| 40 DISALLOW_COPY_AND_ASSIGN(AwWebResourceResponseImpl); | 40 DISALLOW_COPY_AND_ASSIGN(AwWebResourceResponseImpl); |
| 41 }; | 41 }; |
| 42 | 42 |
| 43 bool RegisterAwWebResourceResponse(JNIEnv* env); | 43 bool RegisterAwWebResourceResponse(JNIEnv* env); |
| 44 | 44 |
| 45 } // namespace android_webview | 45 } // namespace android_webview |
| 46 | 46 |
| 47 #endif // ANDROID_WEBVIEW_NATIVE_INTERCEPTED_REQUEST_DATA_IMPL_H_ | 47 #endif // ANDROID_WEBVIEW_NATIVE_INTERCEPTED_REQUEST_DATA_IMPL_H_ |
| OLD | NEW |