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 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 <vector> | 8 #include <vector> |
9 | 9 |
10 #include "base/android/jni_android.h" | 10 #include "base/android/jni_android.h" |
(...skipping 15 matching lines...) Expand all Loading... |
26 | 26 |
27 struct WebMenuItem; | 27 struct WebMenuItem; |
28 | 28 |
29 namespace ui { | 29 namespace ui { |
30 class ViewAndroid; | 30 class ViewAndroid; |
31 class WindowAndroid; | 31 class WindowAndroid; |
32 } | 32 } |
33 | 33 |
34 namespace content { | 34 namespace content { |
35 class RenderWidgetHostViewAndroid; | 35 class RenderWidgetHostViewAndroid; |
36 class SyncInputEventFilter; | |
37 | 36 |
38 // TODO(jrg): this is a shell. Upstream the rest. | 37 // TODO(jrg): this is a shell. Upstream the rest. |
39 class ContentViewCoreImpl : public ContentViewCore, | 38 class ContentViewCoreImpl : public ContentViewCore, |
40 public NotificationObserver { | 39 public NotificationObserver { |
41 public: | 40 public: |
42 static ContentViewCoreImpl* FromWebContents(WebContents* web_contents); | 41 static ContentViewCoreImpl* FromWebContents(WebContents* web_contents); |
43 ContentViewCoreImpl(JNIEnv* env, | 42 ContentViewCoreImpl(JNIEnv* env, |
44 jobject obj, | 43 jobject obj, |
45 bool hardware_accelerated, | 44 bool hardware_accelerated, |
46 WebContents* web_contents, | 45 WebContents* web_contents, |
(...skipping 242 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
289 | 288 |
290 // -------------------------------------------------------------------------- | 289 // -------------------------------------------------------------------------- |
291 // Methods called from native code | 290 // Methods called from native code |
292 // -------------------------------------------------------------------------- | 291 // -------------------------------------------------------------------------- |
293 | 292 |
294 gfx::Size GetPhysicalBackingSize() const; | 293 gfx::Size GetPhysicalBackingSize() const; |
295 gfx::Size GetViewportSizeDip() const; | 294 gfx::Size GetViewportSizeDip() const; |
296 gfx::Size GetViewportSizeOffsetDip() const; | 295 gfx::Size GetViewportSizeOffsetDip() const; |
297 float GetOverdrawBottomHeightDip() const; | 296 float GetOverdrawBottomHeightDip() const; |
298 | 297 |
299 InputEventAckState FilterInputEvent(const WebKit::WebInputEvent& input_event); | |
300 | |
301 void AttachLayer(scoped_refptr<cc::Layer> layer); | 298 void AttachLayer(scoped_refptr<cc::Layer> layer); |
302 void RemoveLayer(scoped_refptr<cc::Layer> layer); | 299 void RemoveLayer(scoped_refptr<cc::Layer> layer); |
303 void SetVSyncNotificationEnabled(bool enabled); | 300 void SetVSyncNotificationEnabled(bool enabled); |
304 void SetNeedsAnimate(); | 301 void SetNeedsAnimate(); |
305 | 302 |
306 private: | 303 private: |
307 class ContentViewUserData; | 304 class ContentViewUserData; |
308 | 305 |
309 friend class ContentViewUserData; | 306 friend class ContentViewUserData; |
310 virtual ~ContentViewCoreImpl(); | 307 virtual ~ContentViewCoreImpl(); |
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
354 | 351 |
355 // The Android view that can be used to add and remove decoration layers | 352 // The Android view that can be used to add and remove decoration layers |
356 // like AutofillPopup. | 353 // like AutofillPopup. |
357 ui::ViewAndroid* view_android_; | 354 ui::ViewAndroid* view_android_; |
358 | 355 |
359 // The owning window that has a hold of main application activity. | 356 // The owning window that has a hold of main application activity. |
360 ui::WindowAndroid* window_android_; | 357 ui::WindowAndroid* window_android_; |
361 | 358 |
362 std::vector<UpdateFrameInfoCallback> update_frame_info_callbacks_; | 359 std::vector<UpdateFrameInfoCallback> update_frame_info_callbacks_; |
363 | 360 |
364 // Optional browser-side input event filtering. | |
365 scoped_ptr<SyncInputEventFilter> input_event_filter_; | |
366 | |
367 DISALLOW_COPY_AND_ASSIGN(ContentViewCoreImpl); | 361 DISALLOW_COPY_AND_ASSIGN(ContentViewCoreImpl); |
368 }; | 362 }; |
369 | 363 |
370 bool RegisterContentViewCore(JNIEnv* env); | 364 bool RegisterContentViewCore(JNIEnv* env); |
371 | 365 |
372 } // namespace content | 366 } // namespace content |
373 | 367 |
374 #endif // CONTENT_BROWSER_ANDROID_CONTENT_VIEW_CORE_IMPL_H_ | 368 #endif // CONTENT_BROWSER_ANDROID_CONTENT_VIEW_CORE_IMPL_H_ |
OLD | NEW |