| 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_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_ANDROID_H_ | 5 #ifndef CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_ANDROID_H_ |
| 6 #define CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_ANDROID_H_ | 6 #define CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_ANDROID_H_ |
| 7 | 7 |
| 8 #include <stddef.h> | 8 #include <stddef.h> |
| 9 #include <stdint.h> | 9 #include <stdint.h> |
| 10 | 10 |
| (...skipping 376 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 387 | 387 |
| 388 // Provides gesture synthesis given a stream of touch events (derived from | 388 // Provides gesture synthesis given a stream of touch events (derived from |
| 389 // Android MotionEvent's) and touch event acks. | 389 // Android MotionEvent's) and touch event acks. |
| 390 ui::FilteredGestureProvider gesture_provider_; | 390 ui::FilteredGestureProvider gesture_provider_; |
| 391 | 391 |
| 392 // Handles gesture based text selection | 392 // Handles gesture based text selection |
| 393 StylusTextSelector stylus_text_selector_; | 393 StylusTextSelector stylus_text_selector_; |
| 394 | 394 |
| 395 // Manages selection handle rendering and manipulation. | 395 // Manages selection handle rendering and manipulation. |
| 396 // This will always be NULL if |content_view_core_| is NULL. | 396 // This will always be NULL if |content_view_core_| is NULL. |
| 397 std::unique_ptr<ui::TouchSelectionController> selection_controller_; | 397 std::unique_ptr<ui::TouchSelectionController> touch_selection_controller_; |
| 398 | 398 |
| 399 // Bounds to use if we have no backing ContentViewCore | 399 // Bounds to use if we have no backing ContentViewCore |
| 400 gfx::Rect default_bounds_; | 400 gfx::Rect default_bounds_; |
| 401 | 401 |
| 402 const bool using_browser_compositor_; | 402 const bool using_browser_compositor_; |
| 403 std::unique_ptr<SynchronousCompositorHost> sync_compositor_; | 403 std::unique_ptr<SynchronousCompositorHost> sync_compositor_; |
| 404 | 404 |
| 405 SynchronousCompositorClient* synchronous_compositor_client_; | 405 SynchronousCompositorClient* synchronous_compositor_client_; |
| 406 | 406 |
| 407 std::unique_ptr<DelegatedFrameEvictor> frame_evictor_; | 407 std::unique_ptr<DelegatedFrameEvictor> frame_evictor_; |
| (...skipping 12 matching lines...) Expand all Loading... |
| 420 base::ObserverList<DestructionObserver> destruction_observers_; | 420 base::ObserverList<DestructionObserver> destruction_observers_; |
| 421 | 421 |
| 422 base::WeakPtrFactory<RenderWidgetHostViewAndroid> weak_ptr_factory_; | 422 base::WeakPtrFactory<RenderWidgetHostViewAndroid> weak_ptr_factory_; |
| 423 | 423 |
| 424 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewAndroid); | 424 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewAndroid); |
| 425 }; | 425 }; |
| 426 | 426 |
| 427 } // namespace content | 427 } // namespace content |
| 428 | 428 |
| 429 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_ANDROID_H_ | 429 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_ANDROID_H_ |
| OLD | NEW |