| OLD | NEW |
| 1 // Copyright 2012 The Chromium Authors. All rights reserved. | 1 // Copyright 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 #include "content/browser/android/content_view_core_impl.h" | 5 #include "content/browser/android/content_view_core_impl.h" |
| 6 | 6 |
| 7 #include <stddef.h> | 7 #include <stddef.h> |
| 8 | 8 |
| 9 #include "base/android/jni_android.h" | 9 #include "base/android/jni_android.h" |
| 10 #include "base/android/jni_array.h" | 10 #include "base/android/jni_array.h" |
| (...skipping 12 matching lines...) Expand all Loading... |
| 23 #include "content/browser/accessibility/browser_accessibility_manager_android.h" | 23 #include "content/browser/accessibility/browser_accessibility_manager_android.h" |
| 24 #include "content/browser/accessibility/browser_accessibility_state_impl.h" | 24 #include "content/browser/accessibility/browser_accessibility_state_impl.h" |
| 25 #include "content/browser/android/gesture_event_type.h" | 25 #include "content/browser/android/gesture_event_type.h" |
| 26 #include "content/browser/android/interstitial_page_delegate_android.h" | 26 #include "content/browser/android/interstitial_page_delegate_android.h" |
| 27 #include "content/browser/android/java/gin_java_bridge_dispatcher_host.h" | 27 #include "content/browser/android/java/gin_java_bridge_dispatcher_host.h" |
| 28 #include "content/browser/android/load_url_params.h" | 28 #include "content/browser/android/load_url_params.h" |
| 29 #include "content/browser/frame_host/interstitial_page_impl.h" | 29 #include "content/browser/frame_host/interstitial_page_impl.h" |
| 30 #include "content/browser/media/media_web_contents_observer.h" | 30 #include "content/browser/media/media_web_contents_observer.h" |
| 31 #include "content/browser/renderer_host/compositor_impl_android.h" | 31 #include "content/browser/renderer_host/compositor_impl_android.h" |
| 32 #include "content/browser/renderer_host/input/web_input_event_builders_android.h
" | 32 #include "content/browser/renderer_host/input/web_input_event_builders_android.h
" |
| 33 #include "content/browser/renderer_host/input/web_input_event_util.h" | |
| 34 #include "content/browser/renderer_host/render_view_host_impl.h" | 33 #include "content/browser/renderer_host/render_view_host_impl.h" |
| 35 #include "content/browser/renderer_host/render_widget_host_impl.h" | 34 #include "content/browser/renderer_host/render_widget_host_impl.h" |
| 36 #include "content/browser/renderer_host/render_widget_host_view_android.h" | 35 #include "content/browser/renderer_host/render_widget_host_view_android.h" |
| 37 #include "content/browser/web_contents/web_contents_view_android.h" | 36 #include "content/browser/web_contents/web_contents_view_android.h" |
| 38 #include "content/common/frame_messages.h" | 37 #include "content/common/frame_messages.h" |
| 39 #include "content/common/input_messages.h" | 38 #include "content/common/input_messages.h" |
| 40 #include "content/common/view_messages.h" | 39 #include "content/common/view_messages.h" |
| 41 #include "content/public/browser/android/compositor.h" | 40 #include "content/public/browser/android/compositor.h" |
| 42 #include "content/public/browser/browser_context.h" | 41 #include "content/public/browser/browser_context.h" |
| 43 #include "content/public/browser/browser_thread.h" | 42 #include "content/public/browser/browser_thread.h" |
| (...skipping 1559 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1603 return ScopedJavaLocalRef<jobject>(); | 1602 return ScopedJavaLocalRef<jobject>(); |
| 1604 | 1603 |
| 1605 return view->GetJavaObject(); | 1604 return view->GetJavaObject(); |
| 1606 } | 1605 } |
| 1607 | 1606 |
| 1608 bool RegisterContentViewCore(JNIEnv* env) { | 1607 bool RegisterContentViewCore(JNIEnv* env) { |
| 1609 return RegisterNativesImpl(env); | 1608 return RegisterNativesImpl(env); |
| 1610 } | 1609 } |
| 1611 | 1610 |
| 1612 } // namespace content | 1611 } // namespace content |
| OLD | NEW |