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 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
45 #include "content/public/browser/screen_orientation_dispatcher_host.h" | 45 #include "content/public/browser/screen_orientation_dispatcher_host.h" |
46 #include "content/public/browser/ssl_host_state_delegate.h" | 46 #include "content/public/browser/ssl_host_state_delegate.h" |
47 #include "content/public/browser/web_contents.h" | 47 #include "content/public/browser/web_contents.h" |
48 #include "content/public/common/content_client.h" | 48 #include "content/public/common/content_client.h" |
49 #include "content/public/common/content_switches.h" | 49 #include "content/public/common/content_switches.h" |
50 #include "content/public/common/menu_item.h" | 50 #include "content/public/common/menu_item.h" |
51 #include "content/public/common/user_agent.h" | 51 #include "content/public/common/user_agent.h" |
52 #include "device/geolocation/geolocation_service_context.h" | 52 #include "device/geolocation/geolocation_service_context.h" |
53 #include "jni/ContentViewCore_jni.h" | 53 #include "jni/ContentViewCore_jni.h" |
54 #include "jni/DragEvent_jni.h" | 54 #include "jni/DragEvent_jni.h" |
55 #include "third_party/WebKit/public/web/WebInputEvent.h" | 55 #include "third_party/WebKit/public/platform/WebInputEvent.h" |
56 #include "ui/android/view_android.h" | 56 #include "ui/android/view_android.h" |
57 #include "ui/android/window_android.h" | 57 #include "ui/android/window_android.h" |
58 #include "ui/base/clipboard/clipboard.h" | 58 #include "ui/base/clipboard/clipboard.h" |
59 #include "ui/base/ui_base_switches_util.h" | 59 #include "ui/base/ui_base_switches_util.h" |
60 #include "ui/events/android/motion_event_android.h" | 60 #include "ui/events/android/motion_event_android.h" |
61 #include "ui/events/blink/blink_event_util.h" | 61 #include "ui/events/blink/blink_event_util.h" |
62 #include "ui/events/blink/web_input_event_traits.h" | 62 #include "ui/events/blink/web_input_event_traits.h" |
63 #include "ui/events/event_utils.h" | 63 #include "ui/events/event_utils.h" |
64 #include "ui/events/gesture_detection/motion_event.h" | 64 #include "ui/events/gesture_detection/motion_event.h" |
65 #include "ui/gfx/android/java_bitmap.h" | 65 #include "ui/gfx/android/java_bitmap.h" |
(...skipping 1541 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1607 return ScopedJavaLocalRef<jobject>(); | 1607 return ScopedJavaLocalRef<jobject>(); |
1608 | 1608 |
1609 return view->GetJavaObject(); | 1609 return view->GetJavaObject(); |
1610 } | 1610 } |
1611 | 1611 |
1612 bool RegisterContentViewCore(JNIEnv* env) { | 1612 bool RegisterContentViewCore(JNIEnv* env) { |
1613 return RegisterNativesImpl(env); | 1613 return RegisterNativesImpl(env); |
1614 } | 1614 } |
1615 | 1615 |
1616 } // namespace content | 1616 } // namespace content |
OLD | NEW |