Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(89)

Side by Side Diff: content/browser/renderer_host/render_widget_host_view_android.h

Issue 2752113005: Let ImeAdapterAndroid have the same lifecycle as its Java peer (Closed)
Patch Set: comments Created 3 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
11 #include <map> 11 #include <map>
12 #include <memory> 12 #include <memory>
13 #include <queue> 13 #include <queue>
14 14
15 #include "base/callback.h" 15 #include "base/callback.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/memory/weak_ptr.h" 19 #include "base/memory/weak_ptr.h"
20 #include "base/process/process.h" 20 #include "base/process/process.h"
21 #include "cc/input/selection.h" 21 #include "cc/input/selection.h"
22 #include "cc/output/begin_frame_args.h" 22 #include "cc/output/begin_frame_args.h"
23 #include "cc/scheduler/begin_frame_source.h" 23 #include "cc/scheduler/begin_frame_source.h"
24 #include "content/browser/accessibility/browser_accessibility_manager.h" 24 #include "content/browser/accessibility/browser_accessibility_manager.h"
25 #include "content/browser/android/content_view_core_impl_observer.h" 25 #include "content/browser/android/content_view_core_impl_observer.h"
26 #include "content/browser/renderer_host/delegated_frame_evictor.h" 26 #include "content/browser/renderer_host/delegated_frame_evictor.h"
27 #include "content/browser/renderer_host/ime_adapter_android.h"
28 #include "content/browser/renderer_host/input/stylus_text_selector.h" 27 #include "content/browser/renderer_host/input/stylus_text_selector.h"
29 #include "content/browser/renderer_host/render_widget_host_view_base.h" 28 #include "content/browser/renderer_host/render_widget_host_view_base.h"
30 #include "content/browser/renderer_host/text_input_manager.h" 29 #include "content/browser/renderer_host/text_input_manager.h"
31 #include "content/common/content_export.h" 30 #include "content/common/content_export.h"
32 #include "content/public/browser/readback_types.h" 31 #include "content/public/browser/readback_types.h"
33 #include "gpu/command_buffer/common/mailbox.h" 32 #include "gpu/command_buffer/common/mailbox.h"
34 #include "third_party/skia/include/core/SkColor.h" 33 #include "third_party/skia/include/core/SkColor.h"
35 #include "ui/android/delegated_frame_host_android.h" 34 #include "ui/android/delegated_frame_host_android.h"
36 #include "ui/android/view_android.h" 35 #include "ui/android/view_android.h"
37 #include "ui/android/view_client.h" 36 #include "ui/android/view_client.h"
38 #include "ui/android/window_android_observer.h" 37 #include "ui/android/window_android_observer.h"
39 #include "ui/events/gesture_detection/filtered_gesture_provider.h" 38 #include "ui/events/gesture_detection/filtered_gesture_provider.h"
40 #include "ui/gfx/geometry/size.h" 39 #include "ui/gfx/geometry/size.h"
41 #include "ui/gfx/geometry/vector2d_f.h" 40 #include "ui/gfx/geometry/vector2d_f.h"
42 #include "ui/gfx/selection_bound.h" 41 #include "ui/gfx/selection_bound.h"
43 #include "ui/touch_selection/touch_selection_controller.h" 42 #include "ui/touch_selection/touch_selection_controller.h"
44 43
45 class GURL; 44 class GURL;
46 45
47 namespace ui { 46 namespace ui {
48 class MotionEventAndroid; 47 class MotionEventAndroid;
49 struct DidOverscrollParams; 48 struct DidOverscrollParams;
50 } 49 }
51 50
52 namespace content { 51 namespace content {
53 class ContentViewCoreImpl; 52 class ContentViewCoreImpl;
53 class ImeAdapterAndroid;
54 class OverscrollControllerAndroid; 54 class OverscrollControllerAndroid;
55 class RenderWidgetHost; 55 class RenderWidgetHost;
56 class RenderWidgetHostImpl; 56 class RenderWidgetHostImpl;
57 class SynchronousCompositorHost; 57 class SynchronousCompositorHost;
58 class SynchronousCompositorClient; 58 class SynchronousCompositorClient;
59 struct NativeWebKeyboardEvent; 59 struct NativeWebKeyboardEvent;
60 60
61 // ----------------------------------------------------------------------------- 61 // -----------------------------------------------------------------------------
62 // See comments in render_widget_host_view.h about this class and its members. 62 // See comments in render_widget_host_view.h about this class and its members.
63 // ----------------------------------------------------------------------------- 63 // -----------------------------------------------------------------------------
(...skipping 150 matching lines...) Expand 10 before | Expand all | Expand 10 after
214 const cc::BeginFrameArgs& LastUsedBeginFrameArgs() const override; 214 const cc::BeginFrameArgs& LastUsedBeginFrameArgs() const override;
215 void OnBeginFrameSourcePausedChanged(bool paused) override; 215 void OnBeginFrameSourcePausedChanged(bool paused) override;
216 216
217 // Non-virtual methods 217 // Non-virtual methods
218 void SetContentViewCore(ContentViewCoreImpl* content_view_core); 218 void SetContentViewCore(ContentViewCoreImpl* content_view_core);
219 SkColor GetCachedBackgroundColor() const; 219 SkColor GetCachedBackgroundColor() const;
220 void SendKeyEvent(const NativeWebKeyboardEvent& event); 220 void SendKeyEvent(const NativeWebKeyboardEvent& event);
221 void SendMouseEvent(const ui::MotionEventAndroid&, int action_button); 221 void SendMouseEvent(const ui::MotionEventAndroid&, int action_button);
222 void SendMouseWheelEvent(const blink::WebMouseWheelEvent& event); 222 void SendMouseWheelEvent(const blink::WebMouseWheelEvent& event);
223 void SendGestureEvent(const blink::WebGestureEvent& event); 223 void SendGestureEvent(const blink::WebGestureEvent& event);
224 void ConnectImeAdapter(ImeAdapterAndroid* ime_adapter);
224 225
225 void OnStartContentIntent(const GURL& content_url, bool is_main_frame); 226 void OnStartContentIntent(const GURL& content_url, bool is_main_frame);
226 227
227 bool OnTouchEvent(const ui::MotionEvent& event); 228 bool OnTouchEvent(const ui::MotionEvent& event);
228 bool OnTouchHandleEvent(const ui::MotionEvent& event); 229 bool OnTouchHandleEvent(const ui::MotionEvent& event);
229 void ResetGestureDetection(); 230 void ResetGestureDetection();
230 void SetDoubleTapSupportEnabled(bool enabled); 231 void SetDoubleTapSupportEnabled(bool enabled);
231 void SetMultiTouchZoomSupportEnabled(bool enabled); 232 void SetMultiTouchZoomSupportEnabled(bool enabled);
232 233
233 long GetNativeImeAdapter();
234
235 void WasResized(); 234 void WasResized();
236 235
237 bool HasValidFrame() const; 236 bool HasValidFrame() const;
238 237
239 void MoveCaret(const gfx::Point& point); 238 void MoveCaret(const gfx::Point& point);
240 void DismissTextHandles(); 239 void DismissTextHandles();
241 void SetTextHandlesTemporarilyHidden(bool hidden); 240 void SetTextHandlesTemporarilyHidden(bool hidden);
242 void OnShowUnhandledTapUIIfNeeded(int x_dip, int y_dip); 241 void OnShowUnhandledTapUIIfNeeded(int x_dip, int y_dip);
243 242
244 void SynchronousFrameMetadata(cc::CompositorFrameMetadata frame_metadata); 243 void SynchronousFrameMetadata(cc::CompositorFrameMetadata frame_metadata);
(...skipping 13 matching lines...) Expand all
258 RenderWidgetHostViewBase* updated_view, 257 RenderWidgetHostViewBase* updated_view,
259 bool did_change_state) override; 258 bool did_change_state) override;
260 void OnImeCompositionRangeChanged( 259 void OnImeCompositionRangeChanged(
261 TextInputManager* text_input_manager, 260 TextInputManager* text_input_manager,
262 RenderWidgetHostViewBase* updated_view) override; 261 RenderWidgetHostViewBase* updated_view) override;
263 void OnImeCancelComposition(TextInputManager* text_input_manager, 262 void OnImeCancelComposition(TextInputManager* text_input_manager,
264 RenderWidgetHostViewBase* updated_view) override; 263 RenderWidgetHostViewBase* updated_view) override;
265 void OnTextSelectionChanged(TextInputManager* text_input_manager, 264 void OnTextSelectionChanged(TextInputManager* text_input_manager,
266 RenderWidgetHostViewBase* updated_view) override; 265 RenderWidgetHostViewBase* updated_view) override;
267 266
268 ImeAdapterAndroid* ime_adapter_for_testing() { return &ime_adapter_android_; } 267 ImeAdapterAndroid* ime_adapter_for_testing() { return ime_adapter_android_; }
269 268
270 // Exposed for tests. 269 // Exposed for tests.
271 cc::SurfaceId SurfaceIdForTesting() const override; 270 cc::SurfaceId SurfaceIdForTesting() const override;
272 271
273 private: 272 private:
274 void RunAckCallbacks(); 273 void RunAckCallbacks();
275 274
276 void CheckCompositorFrameSinkChanged(uint32_t compositor_frame_sink_id); 275 void CheckCompositorFrameSinkChanged(uint32_t compositor_frame_sink_id);
277 void SubmitCompositorFrame(cc::CompositorFrame frame_data); 276 void SubmitCompositorFrame(cc::CompositorFrame frame_data);
278 void SendReclaimCompositorResources(uint32_t compositor_frame_sink_id, 277 void SendReclaimCompositorResources(uint32_t compositor_frame_sink_id,
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after
340 bool is_window_visible_; 339 bool is_window_visible_;
341 bool is_window_activity_started_; 340 bool is_window_activity_started_;
342 341
343 // Used to customize behavior for virtual reality mode, such as the 342 // Used to customize behavior for virtual reality mode, such as the
344 // appearance of overscroll glow and the keyboard. 343 // appearance of overscroll glow and the keyboard.
345 bool is_in_vr_; 344 bool is_in_vr_;
346 345
347 // ContentViewCoreImpl is our interface to the view system. 346 // ContentViewCoreImpl is our interface to the view system.
348 ContentViewCoreImpl* content_view_core_; 347 ContentViewCoreImpl* content_view_core_;
349 348
350 ImeAdapterAndroid ime_adapter_android_; 349 ImeAdapterAndroid* ime_adapter_android_;
351 350
352 // Body background color of the underlying document. 351 // Body background color of the underlying document.
353 SkColor cached_background_color_; 352 SkColor cached_background_color_;
354 353
355 mutable ui::ViewAndroid view_; 354 mutable ui::ViewAndroid view_;
356 355
357 // Manages the Compositor Frames received from the renderer. 356 // Manages the Compositor Frames received from the renderer.
358 std::unique_ptr<ui::DelegatedFrameHostAndroid> delegated_frame_host_; 357 std::unique_ptr<ui::DelegatedFrameHostAndroid> delegated_frame_host_;
359 358
360 cc::ReturnedResourceArray surface_returned_resources_; 359 cc::ReturnedResourceArray surface_returned_resources_;
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after
400 float prev_bottom_shown_pix_; 399 float prev_bottom_shown_pix_;
401 400
402 base::WeakPtrFactory<RenderWidgetHostViewAndroid> weak_ptr_factory_; 401 base::WeakPtrFactory<RenderWidgetHostViewAndroid> weak_ptr_factory_;
403 402
404 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewAndroid); 403 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewAndroid);
405 }; 404 };
406 405
407 } // namespace content 406 } // namespace content
408 407
409 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_ANDROID_H_ 408 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_ANDROID_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698