Chromium Code Reviews| OLD | NEW |
|---|---|
| 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 ANDROID_WEBVIEW_NATIVE_AW_CONTENTS_IO_THREAD_CLIENT_IMPL_H_ | 5 #ifndef ANDROID_WEBVIEW_NATIVE_AW_CONTENTS_IO_THREAD_CLIENT_IMPL_H_ |
| 6 #define ANDROID_WEBVIEW_NATIVE_AW_CONTENTS_IO_THREAD_CLIENT_IMPL_H_ | 6 #define ANDROID_WEBVIEW_NATIVE_AW_CONTENTS_IO_THREAD_CLIENT_IMPL_H_ |
| 7 | 7 |
| 8 #include "android_webview/browser/aw_contents_io_thread_client.h" | |
| 9 | |
| 10 #include <stdint.h> | 8 #include <stdint.h> |
| 11 | 9 |
| 10 #include <memory> | |
|
boliu
2016/04/01 00:49:42
ditto..
Actually not quite. Might break aw_web_co
dcheng
2016/04/01 00:58:01
Done. We'll see, if it breaks, aw_web_contents_del
| |
| 11 | |
| 12 #include "android_webview/browser/aw_contents_io_thread_client.h" | |
| 12 #include "base/android/scoped_java_ref.h" | 13 #include "base/android/scoped_java_ref.h" |
| 13 #include "base/compiler_specific.h" | 14 #include "base/compiler_specific.h" |
| 14 #include "base/macros.h" | 15 #include "base/macros.h" |
| 15 #include "base/memory/scoped_ptr.h" | |
| 16 | 16 |
| 17 class GURL; | 17 class GURL; |
| 18 | 18 |
| 19 namespace content { | 19 namespace content { |
| 20 class ResourceRequestInfo; | 20 class ResourceRequestInfo; |
| 21 class WebContents; | 21 class WebContents; |
| 22 } | 22 } |
| 23 | 23 |
| 24 namespace net { | 24 namespace net { |
| 25 class URLRequest; | 25 class URLRequest; |
| (...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 82 | 82 |
| 83 DISALLOW_COPY_AND_ASSIGN(AwContentsIoThreadClientImpl); | 83 DISALLOW_COPY_AND_ASSIGN(AwContentsIoThreadClientImpl); |
| 84 }; | 84 }; |
| 85 | 85 |
| 86 // JNI registration method. | 86 // JNI registration method. |
| 87 bool RegisterAwContentsIoThreadClientImpl(JNIEnv* env); | 87 bool RegisterAwContentsIoThreadClientImpl(JNIEnv* env); |
| 88 | 88 |
| 89 } // namespace android_webview | 89 } // namespace android_webview |
| 90 | 90 |
| 91 #endif // ANDROID_WEBVIEW_NATIVE_AW_CONTENTS_IO_THREAD_CLIENT_IMPL_H_ | 91 #endif // ANDROID_WEBVIEW_NATIVE_AW_CONTENTS_IO_THREAD_CLIENT_IMPL_H_ |
| OLD | NEW |