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 #ifndef CONTENT_BROWSER_ANDROID_CONTENT_VIEW_CORE_IMPL_H_ | 5 #ifndef CONTENT_BROWSER_ANDROID_CONTENT_VIEW_CORE_IMPL_H_ |
6 #define CONTENT_BROWSER_ANDROID_CONTENT_VIEW_CORE_IMPL_H_ | 6 #define CONTENT_BROWSER_ANDROID_CONTENT_VIEW_CORE_IMPL_H_ |
7 | 7 |
8 #include <stdint.h> | 8 #include <stdint.h> |
9 | 9 |
10 #include <memory> | 10 #include <memory> |
11 #include <vector> | 11 #include <vector> |
12 | 12 |
13 #include "base/android/jni_android.h" | 13 #include "base/android/jni_android.h" |
14 #include "base/android/jni_weak_ref.h" | 14 #include "base/android/jni_weak_ref.h" |
15 #include "base/android/scoped_java_ref.h" | 15 #include "base/android/scoped_java_ref.h" |
16 #include "base/compiler_specific.h" | 16 #include "base/compiler_specific.h" |
17 #include "base/i18n/rtl.h" | 17 #include "base/i18n/rtl.h" |
18 #include "base/macros.h" | 18 #include "base/macros.h" |
19 #include "base/process/process.h" | 19 #include "base/process/process.h" |
20 #include "content/browser/android/content_view_core_impl_observer.h" | 20 #include "content/browser/android/content_view_core_impl_observer.h" |
21 #include "content/browser/renderer_host/render_widget_host_view_android.h" | 21 #include "content/browser/renderer_host/render_widget_host_view_android.h" |
22 #include "content/browser/web_contents/web_contents_impl.h" | 22 #include "content/browser/web_contents/web_contents_impl.h" |
23 #include "content/public/browser/android/content_view_core.h" | 23 #include "content/public/browser/android/content_view_core.h" |
24 #include "content/public/browser/web_contents_observer.h" | 24 #include "content/public/browser/web_contents_observer.h" |
25 #include "third_party/WebKit/public/web/WebInputEvent.h" | 25 #include "third_party/WebKit/public/platform/WebInputEvent.h" |
26 #include "ui/android/overscroll_refresh.h" | 26 #include "ui/android/overscroll_refresh.h" |
27 #include "ui/android/view_android.h" | 27 #include "ui/android/view_android.h" |
28 #include "ui/gfx/geometry/rect.h" | 28 #include "ui/gfx/geometry/rect.h" |
29 #include "ui/gfx/geometry/rect_f.h" | 29 #include "ui/gfx/geometry/rect_f.h" |
30 #include "ui/gfx/selection_bound.h" | 30 #include "ui/gfx/selection_bound.h" |
31 #include "url/gurl.h" | 31 #include "url/gurl.h" |
32 | 32 |
33 namespace ui { | 33 namespace ui { |
34 class WindowAndroid; | 34 class WindowAndroid; |
35 } | 35 } |
(...skipping 434 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
470 scoped_refptr<GinJavaBridgeDispatcherHost> java_bridge_dispatcher_host_; | 470 scoped_refptr<GinJavaBridgeDispatcherHost> java_bridge_dispatcher_host_; |
471 | 471 |
472 DISALLOW_COPY_AND_ASSIGN(ContentViewCoreImpl); | 472 DISALLOW_COPY_AND_ASSIGN(ContentViewCoreImpl); |
473 }; | 473 }; |
474 | 474 |
475 bool RegisterContentViewCore(JNIEnv* env); | 475 bool RegisterContentViewCore(JNIEnv* env); |
476 | 476 |
477 } // namespace content | 477 } // namespace content |
478 | 478 |
479 #endif // CONTENT_BROWSER_ANDROID_CONTENT_VIEW_CORE_IMPL_H_ | 479 #endif // CONTENT_BROWSER_ANDROID_CONTENT_VIEW_CORE_IMPL_H_ |
OLD | NEW |